Signing installer of my program generated by Inno Setup to make it of a trusted company? [duplicate]

99封情书 提交于 2020-01-10 04:44:25

问题


I have a installer file created with Inno Setup of an application that I developed.

So when I go to install the program, it shows me a window telling me that my application is not trusted.

How can I sign my installer file to avoid that window when a user installs my program, or to make my installer a trusted installer?

I have a .pfx file that I generated with OpenSSL and my SSL certificate. I tried signing it with the Inno Setup signing tool but without success. This is the line on my signing window:

"C:\Program Files\Windows Kits\8.1\bin\x86\signtool.exe" sign /f "C:\Users\user\Documents\programtoinstall\Installers\key.pfx" /p "passwordOfThePfxFile"  /tr "http://timestamp.comodoca.com/authenticode" $f

回答1:


Signing an installer with a self-signed certificate won't have any effect.

You have to sign the installer with a code signing certificate issued by a trusted authority.



来源:https://stackoverflow.com/questions/45988806/signing-installer-of-my-program-generated-by-inno-setup-to-make-it-of-a-trusted

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!