Is there any way to disable the Print Screen button from keyboard (without breaking it the key of-course). I am using the windows 7.
I need it because increase the security of my database which is used by few employees.
Is there any way to disable the Print Screen button from keyboard (without breaking it the key of-course). I am using the windows 7.
I need it because increase the security of my database which is used by few employees.
You can disable any key if you manipulate the scancode map registry key. A small tutorial with explanation of the settings can be found here (a more detailed explanation of the scancode map here).
For the print screen key in particular you can create a new textfile containing:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,04,00,00,00,00,00,2a,e0,00,00,37,e0,\
00,00,54,00,00,00,00,00
and save it as disable_printscreen.reg. You can then import it, as it is described here.
If you want to undo your changes you can make a file with the content:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=-
Or delete the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout\Scancode Map manually.
As with all changes in the registry be sure that you understand what you are doing and make a backup first.
EDIT: Sorry the link I had posted first was not good enough.
Steps to disable the print screen key: