Skip to content

Instantly share code, notes, and snippets.

@numpad0
Created November 11, 2024 05:47
Show Gist options
  • Save numpad0/ec13942b26f0d29d25d4544e9a4d102c to your computer and use it in GitHub Desktop.
Save numpad0/ec13942b26f0d29d25d4544e9a4d102c to your computer and use it in GitHub Desktop.
Registry file to allow manually forced crash on Windows with Right Shift + Scroll Lock + Scroll Lock on JIS/jp106 keyboards
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters]
"CrashOnCtrlScroll"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\crashdump]
"Dump1Keys"=dword:00000001
"Dump2Key"=dword:0000007d
// 0x7D: ScrLk in JIS
// ref. https://bsakatu.net/doc/scancode/
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\kbdhid\Parameters]
"CrashOnCtrlScroll"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\kbdhid\crashdump]
"Dump1Keys"=dword:00000001
"Dump2Key"=dword:0000007d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment