From: Harvie Date: Mon, 24 May 2010 19:18:10 +0000 (+0200) Subject: Added nasty MS Windows ctrl+scroll+scroll BSOD registry key X-Git-Url: https://git.harvie.cz/?a=commitdiff_plain;h=498f46739bc749de52a989e06c77317260e30ad0;p=mirrors%2FPrograms.git Added nasty MS Windows ctrl+scroll+scroll BSOD registry key --- diff --git a/windows-batch/bsod.bat b/windows-batch/bsod.bat new file mode 100755 index 0000000..a247dd5 --- /dev/null +++ b/windows-batch/bsod.bat @@ -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" +echo Now reboot and pres CTRL+SCROLL,SCROLL +pause + diff --git a/windows-batch/bsod.reg b/windows-batch/bsod.reg new file mode 100755 index 0000000..2bd139d --- /dev/null +++ b/windows-batch/bsod.reg @@ -0,0 +1,5 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters] +"CrashOnCtrlScroll"=dword:00000001 +