Created
November 11, 2024 05:47
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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