VS 2005 on Vista : Problem with Post build events

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?
 
Joined
May 15, 2012
Messages
1
Reaction score
0
Try this:

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top