Latest version silent install with certificate

I believe the latest installer uses InnoSoft. What would be a sample command line to install DO silently and include the certificate?

I've edited the guide to make the information on installing certificates clearer. It was buried in the InstallShield part, but the same applies to InnoSetup installers.

You'd need to use a script, batch file, or similar to run two commands, one to do the silent install itself (using Inno's /SILENT or /VERYSILENT switches documented here, and the other to install the certificate (details in the linked post).

I am fine with the basic application install, but where is the documentation for the Cert install?

Is this what you are refering to?

:: Register Directory Opus
Set OpusEXE=%ProgramFiles%\GPSoftware\Directory Opus\dopus.exe
Set CertFile=%CertFilePath%\Certificate.txt
Set RegCode=■■■■
"%OpusEXE%" /cert "%CertFile%" /regcode %RegCode% /norun

That looks correct.

The details should be at the top of the thread now (try Ctrl-F5 in case of caching issues):

Thanks for the help.