VS 2005 on Vista : Problem with Post build events

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

Hi,

I'm trying to run the following post build event command:

signtool sign /f c:\source\Build_Files\mycert.pfx /p <password> C:
\source\application.exe

It works from a command prompt, but from within VS I get this error:

Error 1 The command "signtool sign /f c:\source\Build_Files
\mycert.pfx /p <password> C:\source\application.exe" exited with code
9009. application

Any idea?
 
Try this:

"$(FrameworkSDKDir)bin\signtool" /f c:\source\Build_Files\mycert.pfx /p <password> C:
\source\application.exe
 
Back
Top