summaryrefslogtreecommitdiff
path: root/drivers/StartSuspended
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/StartSuspended')
-rw-r--r--drivers/StartSuspended/StartSuspended.sysbin0 -> 10504 bytes
-rw-r--r--drivers/StartSuspended/install.cmd5
-rw-r--r--drivers/StartSuspended/remove.cmd4
3 files changed, 9 insertions, 0 deletions
diff --git a/drivers/StartSuspended/StartSuspended.sys b/drivers/StartSuspended/StartSuspended.sys
new file mode 100644
index 0000000..934cb80
--- /dev/null
+++ b/drivers/StartSuspended/StartSuspended.sys
Binary files differ
diff --git a/drivers/StartSuspended/install.cmd b/drivers/StartSuspended/install.cmd
new file mode 100644
index 0000000..e47632b
--- /dev/null
+++ b/drivers/StartSuspended/install.cmd
@@ -0,0 +1,5 @@
+copy "%~dp0StartSuspended.sys" %systemdrive%\StartSuspended.sys
+sc.exe create StartSuspended type= kernel start= auto binPath= %systemdrive%\StartSuspended.sys
+reg.exe add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\StartSuspended /v Target /t REG_SZ /d sppsvc.exe /f
+net.exe start StartSuspended
+pause
diff --git a/drivers/StartSuspended/remove.cmd b/drivers/StartSuspended/remove.cmd
new file mode 100644
index 0000000..a348411
--- /dev/null
+++ b/drivers/StartSuspended/remove.cmd
@@ -0,0 +1,4 @@
+net.exe stop RTCore64
+sc.exe delete RTCore64
+del %systemdrive%\RTCore64.sys
+pause