I created a MSI file and a couple of EXE's. Need to sign them and upload them to the production server so that users can download them and run on their local machines.
I have the certificate file and using the following command, i signed:
signtool.exe sign /f certicate_Test.pfx /t "
http://timestamp.verisign.com/scripts/timestamp.dll" /v msiFileName
The above command was executed successfully. I uploaded it to the production server and when i downloaded to another PC and tried running it, gave me an error "Publisher cannot be verified". Is there something i need to do on the remote PC's where the msi is going to be executed?
ASKER