Added nasty MS Windows ctrl+scroll+scroll BSOD registry key
authorHarvie <tomas@mudrunka.cz>
Mon, 24 May 2010 19:18:10 +0000 (21:18 +0200)
committerHarvie <tomas@mudrunka.cz>
Wed, 26 May 2010 21:45:11 +0000 (23:45 +0200)
windows-batch/bsod.bat [new file with mode: 0755]
windows-batch/bsod.reg [new file with mode: 0755]

diff --git a/windows-batch/bsod.bat b/windows-batch/bsod.bat
new file mode 100755 (executable)
index 0000000..a247dd5
--- /dev/null
@@ -0,0 +1,13 @@
+rem Enable Manual Crash Feature (Windows 2000) Popular
+
+rem Microsoft Windows 2000 includes a feature that enables you to have the system stop responding and generate a Memory.dmp file (crash to blue-screen) by using a button combination on the keyboard.
+rem This "feature" is disabled by default. To enable this feature, open your registry and find the key below.
+
+rem Create a new DWORD value called "CrashOnCtrlScroll" and set it to "1" to enable keyboard initiated crashes.
+rem After restarting the computer, you can generate a system to stop responding by holding down the right CTRL key and pressing the SCROLL LOCK key twice.
+rem Note: Pressing left CTRL key does not generate the system to stop responding.
+
+reg add "HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters" /v "CrashOnCtrlScroll" /t "reg_dword" /d "00000001"\r
+echo Now reboot and pres CTRL+SCROLL,SCROLL
+pause\r
+
diff --git a/windows-batch/bsod.reg b/windows-batch/bsod.reg
new file mode 100755 (executable)
index 0000000..2bd139d
--- /dev/null
@@ -0,0 +1,5 @@
+Windows Registry Editor Version 5.00\r
+\r
+[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters]\r
+"CrashOnCtrlScroll"=dword:00000001\r
+\r
This page took 0.149672 seconds and 4 git commands to generate.