Search code examples
certificatesignpfxsigntool

Signtool error The specificed PFX password is not correct


I have a new certificate from DigiCert .pfx file which when I try to use it for signing gives the error "The specified PFX password is not correct" However the password works fine when installing it locally. I have tried without specifying a password without success. The certificate was given to me buy another person who purchased it.

Thanks


Solution

  • I had the same issue but solved it by removing " from the password.

    Before: signtool.exe sign /f mycert.pfx /p "password" /v /t http://... "application.exe"

    After: signtool.exe sign /f mycert.pfx /p password /v /t http://... application.exe