Windows Software Development Kit (SDK) contains headers, libraries, and tools you can use when you create apps that run on Windows operating systems.
To download the Windows Software Development Kit (SDK) click here.
Important SignTool Options:
The following command signs the file using a certificate stored in a password-protected PFX file:
SignTool sign /f MyCert.pfx /p MyPassword MyControl.exe
The following command signs and time stamps the file:
SignTool sign /f MyCert.pfx /t http://timestamp.comodoca.com/rfc3161 MyControl.exe
To Dual Sign your application, please run the following codes one after another:
signtool.exe sign /f MyCert.pfx /p <PFX password> /t http://timestamp.comodoca.com /v foo.exe
signtool.exe sign /f MyCert.pfx /p <PFX password> /fd sha256 /tr http://timestamp.comodoca.com/?td=sha256 /td sha256 /as /v foo.exe
To verify the successful signature use the following commands:
Authenticode: signtool verify /v /pa
Kernel Driver Signing: signtool verify /v /kp