S smatthe New member Mar 23, 2014 #1 Is there a way to put a digital signature on an EXE file, or some alternative way to prevent Windows/IE from telling users that the publisher of my EXE file is unknown and recommending that they not run it?
Is there a way to put a digital signature on an EXE file, or some alternative way to prevent Windows/IE from telling users that the publisher of my EXE file is unknown and recommending that they not run it?
gdgsupport Support Staff member Mar 24, 2014 #2 Yes, you can digitally sign EXE files made with XLS Padlock like any other EXE file. You must first buy a certificate from an authority (CA). You can contact us by email if you want some names of sellers. Then you use Microsoft Sign Tool http://msdn.microsoft.com/en-us/library/aa387764.aspx You download it as part of the Windows SDK. Once downloaded you can use it from the command line: Code: signtool signwizard This will launch a wizard that will walk you through signing your application.
Yes, you can digitally sign EXE files made with XLS Padlock like any other EXE file. You must first buy a certificate from an authority (CA). You can contact us by email if you want some names of sellers. Then you use Microsoft Sign Tool http://msdn.microsoft.com/en-us/library/aa387764.aspx You download it as part of the Windows SDK. Once downloaded you can use it from the command line: Code: signtool signwizard This will launch a wizard that will walk you through signing your application.