Menu
  • HOME
  • TAGS

Windows driver installation failure after signing and verifying with signtool using cross signed certificates using SHA-2

windows,driver,x509,signtool,authenticode

It turns out that Microsoft does not support SHA-2 for driver signing on Windows 7. In some cases, you might want to sign a driver package with two different signatures. For example, suppose you want your driver to run on Windows 7 and Windows 8. Windows 8 supports signatures created...

How to sign ClickOnce application in Post Build Event?

c#,clickonce,signing,signtool

Thanks to Mate Finally I did that! I added target to *.cproj file as mentioned in article here It looks like: <Target Name="AfterCompile"> <Exec Command="&quot;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\SignTool.exe&quot; sign /f cert.pfx /p your_password /v &quot;$(ProjectDir)obj/$(ConfigurationName)/$(TargetFileName)&quot;" /> </Target> There is signed *.exe file in the obj directory. Also I use AfterCompile...

Code signing with signtool fails due to private key filter

windows,certificate,code-signing,privatekey,signtool

In order to sign a file you need to have the certificate's private key, which is not included in the *.cer file you copied from the Windows 7 machine. To export the certificate with its private key you can follow the instructions supplied here. Do note that you'll only be...