How to add code signing certificate to setup file using Installshield in visual studio 2012?

Tool: Visual Studio 2012, InstallShield 2015 Limited Edition(to create Setup). Application Type: Windows Form Application using C#.

I have Created one windows form Application. And also created it's setup using Install Shield in Visual Studio 2012.

Now I have one Code Signing Certificate and I want to add it in my Project Setup. How can I do It?

Or I have to go with ClickOnce instead of InstallShield?

Any Suggestion?

1

2 Answers

Unsure about InstallShield LE, but Professional and above have a tab called "Signing" under the Release view where you can set up your signing particulars. See here: Signing Tab in InstallShield Professional

FWIW, InstallShield just uses the signing tools that come from Microsoft such as signtool.exe to sign the build.

Edit: Also found this help doc from InstallShield.

On Visual Studio open your InstallShield LE setup project. Under Step 6 "Prepare for Release" double-click Releases. In the resulting window you are presented with the tree-view that contains the Builds/Express/SingleImage. There is a tab named "Signing". Enter the path/filename for the Digital Certificate File, the Certificate Password, and specify which output files you want to sign. Install Shield then signs the installation program upon a build.

Got this info, and it worked for me, from this answer and comments

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like