aboutsummaryrefslogtreecommitdiff
path: root/driver-start.bat
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-03-28 14:13:30 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-03-28 14:13:30 +0100
commit487e95bfd9db3fb9e4410bf1adfbae5588ff7f0e (patch)
tree8fef60f82e0c859629c41165867a65f9d8851264 /driver-start.bat
initial commit
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'driver-start.bat')
-rw-r--r--driver-start.bat18
1 files changed, 18 insertions, 0 deletions
diff --git a/driver-start.bat b/driver-start.bat
new file mode 100644
index 0000000..93612e7
--- /dev/null
+++ b/driver-start.bat
@@ -0,0 +1,18 @@
+@echo off
+set SCNAME=PastDSE
+set DRIVER="%~dp0\x64\Debug\PastDSEDriver.sys"
+if not exist %DRIVER% set DRIVER="%~dp0\bin\x64\Debug\PastDSEDriver.sys"
+
+echo ***************************
+echo Service Name: %SCNAME%
+echo Driver......: %DRIVER%
+echo ***************************
+
+sc create %SCNAME% binPath= %DRIVER% type= kernel
+echo ***************************
+sc start %SCNAME%
+echo ***************************
+sc query %SCNAME%
+
+REM pause
+timeout /t 3 \ No newline at end of file