| 1 | rem Enable Manual Crash Feature (Windows 2000) Popular |
| 2 | |
| 3 | 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. |
| 4 | rem This "feature" is disabled by default. To enable this feature, open your registry and find the key below. |
| 5 | |
| 6 | rem Create a new DWORD value called "CrashOnCtrlScroll" and set it to "1" to enable keyboard initiated crashes. |
| 7 | 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. |
| 8 | rem Note: Pressing left CTRL key does not generate the system to stop responding. |
| 9 | |
| 10 | reg add "HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters" /v "CrashOnCtrlScroll" /t "reg_dword" /d "00000001"\r |
| 11 | echo Now reboot and pres CTRL+SCROLL,SCROLL |
| 12 | pause\r |
| 13 | |