Inno Setup action Code Signing parameter

I see this new "Code Signing" parameter is not yet documented in the help file (but example syntax is provided). How is it supposed to be used, are we to use this parameter (only) instead of turning on the preprocessor checkbox and passing the command line there?

I’d like to know as well. In FB6 we we’re building and signing our installers via Execute Program actions. Would be nice to be able to consolidate.

Code signing is not dependent on the the preprocessor. In your iss script, add this to the Setup section :

SignTool=SignFromFB

and then in the action in FinalBuilder :

SignFromFB=C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\signtool.exe sign /f c:\wherever\mycert.pfx /p certpassword -t http://timestamp.verisign.com/scripts/timstamp.dll $f

The $f tells inno to sign the file it is creating.

BTW this is only available in FB7.