Sometimes you need to test how a system reacts to a kernel panic or a bug check, perhaps to verify monitoring systems or crash dump collection. This registry tweak enables a manual blue screen trigger.
The Fix
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters]
"CrashOnCtrlScroll"=dword:00000001
Why it works
- This registry setting, when enabled, allows the system to be manually crashed by holding down the right
Ctrlkey and pressing theScroll Lockkey twice. It's a kernel-level trigger.
Verify
- After applying the registry change and rebooting, hold the right
Ctrlkey and pressScroll Locktwice. Your system should immediately experience a Blue Screen of Death (BSOD) with aMANUALLY_INITIATED_CRASHbug check.
Notes
- Requires Administrator privileges.
- CAUTION: This will crash your system without warning, potentially leading to data loss if unsaved work is open. Use with extreme care and only for testing purposes.
- Reboot is required for the registry change to take effect.
- The
Scroll Lockkey is often a shared key on modern keyboards (Fn + another key). - Remember to set
CrashOnCtrlScrollback to0or delete the entry when testing is complete.
Techworks Blog