I am already completely confused by reading the forums, so it’s best to explain without demagogues simply. How can I sign a written application in Delphi with a certificate?
1 answer
The Microsoft SignTool utility, which comes as part of the Microsoft SDK, will help you: http://msdn.microsoft.com/en-us/windowsserver/bb980924.aspx
The easiest way to sign, when Signtool selects the certificate with the longest validity, is to run the following command:
signtool sign /a MyFile.exe
If you have a certificate in the PFX file, you can sign it by setting the password to the file:
signtool sign /f MyCert.pfx /p MyPassword MyFile.exe
Full information on Signtool commands: http://msdn.microsoft.com/ru-ru/library/8s9b9yaz.aspx
|