From c871ce3a02a621be52c853ab3c6ccf576a2fa89c Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Mon, 23 Mar 2020 23:06:01 +0100 Subject: * moved all certs in same named subdir * added admin priv Signed-off-by: Toni Uhlig --- cert.pfx | Bin 5925 -> 0 bytes certs/cert_0.pfx | Bin 0 -> 5925 bytes driver-sign.bat | 13 +++++++++++-- driver-start.bat | 9 +++++++++ driver-stop.bat | 9 +++++++++ 5 files changed, 29 insertions(+), 2 deletions(-) delete mode 100644 cert.pfx create mode 100644 certs/cert_0.pfx diff --git a/cert.pfx b/cert.pfx deleted file mode 100644 index 4d9bcb3..0000000 Binary files a/cert.pfx and /dev/null differ diff --git a/certs/cert_0.pfx b/certs/cert_0.pfx new file mode 100644 index 0000000..4d9bcb3 Binary files /dev/null and b/certs/cert_0.pfx differ diff --git a/driver-sign.bat b/driver-sign.bat index 21d1c0b..03d911f 100644 --- a/driver-sign.bat +++ b/driver-sign.bat @@ -3,8 +3,17 @@ set SIGNTOOL="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\signtool.exe" set DRIVER_DEBUG="%~dp0x64\Debug\PastDSEDriver.sys" set DRIVER_RELEASE="%~dp0x64\Release\PastDSEDriver.sys" -set CA="%~dp0\VeriSign Class 3 Public Primary Certification Authority - G5.cer" -set CERT="%~dp0\cert.pfx" +set CA="%~dp0\certs\VeriSign Class 3 Public Primary Certification Authority - G5.cer" +set CERT="%~dp0\certs\cert_0.pfx" + +net session >nul 2>&1 +if %ERRORLEVEL% EQU 0 ( + echo You are running this script as admin. Fine! +) else ( + echo ERROR: This script requires admin privileges! + pause + exit /b 1 +) date 01-01-14 diff --git a/driver-start.bat b/driver-start.bat index 93612e7..acb4824 100644 --- a/driver-start.bat +++ b/driver-start.bat @@ -3,6 +3,15 @@ set SCNAME=PastDSE set DRIVER="%~dp0\x64\Debug\PastDSEDriver.sys" if not exist %DRIVER% set DRIVER="%~dp0\bin\x64\Debug\PastDSEDriver.sys" +net session >nul 2>&1 +if %ERRORLEVEL% EQU 0 ( + echo You are running this script as admin. Fine! +) else ( + echo ERROR: This script requires admin privileges! + pause + exit /b 1 +) + echo *************************** echo Service Name: %SCNAME% echo Driver......: %DRIVER% diff --git a/driver-stop.bat b/driver-stop.bat index dcae810..32c9bb8 100644 --- a/driver-stop.bat +++ b/driver-stop.bat @@ -1,6 +1,15 @@ @echo off set SCNAME=PastDSE +net session >nul 2>&1 +if %ERRORLEVEL% EQU 0 ( + echo You are running this script as admin. Fine! +) else ( + echo ERROR: This script requires admin privileges! + pause + exit /b 1 +) + echo *************************** echo Service Name: %SCNAME% echo *************************** -- cgit v1.2.3