diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-06-30 13:12:44 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-06-30 13:48:13 +0200 |
commit | de3d64ca85fcd3fa4251a4d4719c452da2a56987 (patch) | |
tree | b453ce58b24fbf073c93872658d49d27e2d1e18c /create_codesign_ca.bat | |
parent | f72851a80c90960822c5498b717fac738a92971b (diff) |
Sign drivers on native Windows. Fixes #2.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'create_codesign_ca.bat')
-rw-r--r-- | create_codesign_ca.bat | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/create_codesign_ca.bat b/create_codesign_ca.bat new file mode 100644 index 0000000..5de3873 --- /dev/null +++ b/create_codesign_ca.bat @@ -0,0 +1,47 @@ +@echo off + +set MYDIR=%~dp0 +set FILENAME_PREFIX=mingw-w64-dpp + +net session >nul 2>&1 +if NOT %ERRORLEVEL% EQU 0 ( + echo ERROR: This script requires Administrator privileges! + pause + exit /b 1 +) + +where makecert.exe >nul 2>&1 +IF %ERRORLEVEL% NEQ 0 ( + echo ERROR: makecert.exe not found, pleae add it to your PATH + pause + exit /b 1 +) + +where certmgr.exe >nul 2>&1 +IF %ERRORLEVEL% NEQ 0 ( + echo ERROR: certmgr.exe not found, pleae add it to your PATH + pause + exit /b 1 +) + +where cert2spc.exe >nul 2>&1 +IF %ERRORLEVEL% NEQ 0 ( + echo ERROR: cert2spc.exe not found, pleae add it to your PATH + pause + exit /b 1 +) + +where pvk2pfx.exe >nul 2>&1 +IF %ERRORLEVEL% NEQ 0 ( + echo ERROR: pvk2pfx.exe not found, pleae add it to your PATH + pause + exit /b 1 +) + +makecert.exe -b 01/01/2023 -r -n CN="%FILENAME_PREFIX%" -sv "%MYDIR%/%FILENAME_PREFIX%.pvk" "%MYDIR%/%FILENAME_PREFIX%.cer" +certmgr.exe -add "%MYDIR%/%FILENAME_PREFIX%.cer" -s -r localMachine ROOT +certmgr.exe -add "%MYDIR%/%FILENAME_PREFIX%.cer" -s -r localMachine TRUSTEDPUBLISHER +cert2spc.exe "%MYDIR%/%FILENAME_PREFIX%.cer" "%MYDIR%/%FILENAME_PREFIX%.spc" +pvk2pfx.exe -pvk "%MYDIR%/%FILENAME_PREFIX%.pvk" -spc "%MYDIR%/%FILENAME_PREFIX%.spc" -pfx "%MYDIR%/%FILENAME_PREFIX%.pfx" + +pause |