I have Inno Setup and a CSC... I tried following Inno Setup's documentation to get Code Signing set up. I mainly do this because I want to code sign the uninst***.exe file.
Upon compilation, I get this error:
Running Sign Tool command: signtool sign /f <absolute_path_that_exists>\<file_that_exists>.p12 /p <some_cool_password> /fd sha256 /tr http://sha256timestamp.ws.symantec.com/sha256/timestamp /v "<absolute_path_that_exists>\uninst.e32.tmp"
Sign Tool command failed (Failed to execute Sign Tool.
Error 2: The system cannot find the file specified). Will retry (2 tries left).
My Inno Setup .iss file has this in it:
SignTool=standardcsc
SignedUninstaller=yes
where standardcsc is:
signtool sign /f <absolute_path_that_exists>\<file_that_exists>.p12 /p <some_cool_password> /fd sha256 /tr http://sha256timestamp.ws.symantec.com/sha256/timestamp /v $f
The only file that does not exist is <absolute_path_that_exists>\uninst.e32.tmp"
I'm not entirely sure if I'm getting this right... Why is Inno Setup attempting to sign a file that does not exist?
I am stumped, I do not know how to fix the problem... Please help!
Thank you.