15
8
While Windows XP came out I heard about a testing feature that existed to manually cause a BSOD (Blue Screen Of Death). I also heard this was supposed to be removed in XP Service Pack 2. It didn't get removed, it's also in Vista and Windows 7. To Enable this navigate to this location in the registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters
and add CrashOnCtrlScroll
as a REG_DWORD
with the value of 1.
Now reboot and Press Ctrl+Scroll Lock+Scroll Lock, and you get a BSOD.
Why is this feature still here?
3I think you'll need to ask Microsoft about that one. – DLH – 2009-07-27T19:45:06.070
19Since it requires a mandatory registry hack, I don't think there's a downside to leaving it in the system. Nobody's likely to trigger it by mistake. – sangretu – 2009-07-27T19:57:08.213
Will the key sequence also work if triggered from an RDP session? – Axxmasterr – 2009-07-27T20:16:14.010
@Axxmasterr: I'm pretty sure it would, but I haven't tested it myself. – Kredns – 2009-07-27T21:45:11.850
This is probably how apple did this: http://gizmodo.com/assets/resources/2007/10/171953dc7.jpeg
– Harley Watson – 2009-07-27T22:31:23.207That is one thing I hate about Apple... not only they use a BSOD screenshot for a (nowadays) pretty stable OS, they even use an outdated one (probably from 98 or ME). (My friend, who is a 100% Linux user, likes Windows 7. That says something.) – user1686 – 2009-07-28T06:55:08.787
4Since it has a legitimate use case that matters to the people who actually write and debug the kernel and device drivers, I wouldn't expect to see it removed. Enabling it requires write access to HKLM, and even if enabled all you get is a BSOD. – RBerteig – 2009-07-28T22:52:37.847
2@Axxmaster: No, it won't since the key sequence is implemented in the device drivers for keyboards. Those aren't needed or even used in an RDP session. – Joey – 2010-05-03T19:24:30.023
It didn't work for USB keyboards until Windows 7. – Jamie Hanrahan – 2016-02-18T00:02:44.320
I tried it on Windows XP SP3 with USB keyboard (I added
CrashOnCtrlScroll
value toHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\kbdhid\Parameters
key) and it didn't work. – Piotr Dobrogost – 2011-09-29T11:53:56.900