-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maxime Chamley
committed
Jan 30, 2015
1 parent
d65a3f5
commit 605a814
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |