Skip to content

Commit

Permalink
Add sign script
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Chamley committed Jan 30, 2015
1 parent d65a3f5 commit 605a814
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions sign.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
REM Internal script to sign binaries before publishing a release on github
REM This will *NOT* work on your computer without the excepted driver signing certificate!

REM Because of various code signing certificates on our build machines, this script use explicitly a code signing certificate issued by GoDaddy (/i Daddy).

REM Sign dll/exe files
signtool sign /v /i Daddy /t http://timestamp.verisign.com/scripts/timstamp.dll Release\*.dll
signtool sign /v /i Daddy /t http://timestamp.verisign.com/scripts/timstamp.dll Release\*.exe

REM Sign driver files...
signtool sign /v /i Daddy /t http://timestamp.verisign.com/scripts/timstamp.dll Win7Release\dokan.sys
signtool sign /v /i Daddy /t http://timestamp.verisign.com/scripts/timstamp.dll Win8Release\dokan.sys
signtool sign /v /i Daddy /t http://timestamp.verisign.com/scripts/timstamp.dll Win8.1Release\dokan.sys

0 comments on commit 605a814

Please sign in to comment.