Page 1 of 1

How can I use digital signature?

Posted: Mon Apr 09, 2018 7:51 pm
by thesingh_prabh
Hi

how can I use digital signature in installer?

Re: How can I use digital signature?

Posted: Tue Apr 10, 2018 11:18 am
by Leo
Hi,

Please read this first:
http://www.actualinstaller.com/help/faq ... _publisher

To sign setup files you can use Microsoft's tool signtool.exe or kSign.
The instruction on how to sign a setup file using kSign tool is described here:
http://certhelp.ksoftware.net/support/s ... ign-files-

To automate the signing process after building setup files, there is a special feature in Actual Installer:
Open menu "View \ Options" and click "File Options". Here you can select option "Sign setup file after building" and enter a command for signing:

Example for Signtool.exe:

Code: Select all

/K signtool sign /f MyCert.pfx "<SetupExe>" 
The command must begin with /K. All paths containing spaces must be quoted.