|
| ||||||||||
| Tags: keyboard, print screen, windows xp |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to disable Print Screen function on Windows
|
|
#2
| |||
| |||
|
You can do that through customization of keyboard keys. There are two options for that. First. Using some third party software to modify the key settings and second by editing the keyboard script file which is inside Windows directory. Once the settings is removed you will be able to get rid of printscreen key press. That is the only way to turn it off. I will recommend you to use some keyboard customization tools. |
|
#3
| |||
| |||
|
You can do that through Autoit. It will allow you to disable the key you want. But for that you have to modify the keyboard file. You can find AutoIT from web and then run the script. It will allow you to disable the single key. |
|
#4
| |||
| |||
|
There is one more utility that you can try. It is called Mapkeyboard. When you run it it will show you a virtual keyboard on the screen. You can then press the one which you want to disable. It is one of the most easiest utility you can try. You can then remap the key back again and check whether it is working or not. You just have to click on save layout to make final settings. And also reboot is required. |
|
#5
| |||
| |||
| re: How to disable Print Screen function on Windows
Nice work thanks..! here a new added code with keyboard copy paste disables Code: Opt("TrayIconHide",1) HotKeySet("{PRINTSCREEN}", "DisablePrintScreen") ;capture PrintScreen HotKeySet("!{PRINTSCREEN}", "DisablePrintScreen") ;capture Alt+PrintScreen HotKeySet("+{PRINTSCREEN}", "DisablePrintScreen") ;capture +PrintScreen HotKeySet("^{PRINTSCREEN}", "DisablePrintScreen") ;capture Ctrl+PrintScreen HotKeySet("!^{PRINTSCREEN}", "DisablePrintScreen") ;capture Ctrl+Alt+PrintScreen HotKeySet("^c", "DisablePrintScreen") ;capture Ctrl+c HotKeySet("^v", "DisablePrintScreen") ;capture Ctrl+v HotKeySet("^x", "DisablePrintScreen") ;capture Ctrl+x While 1 WEnd Func DisablePrintScreen() EndFunc thanks again and anybody have any Idea to prevent right click copy past control with active directory?? |
|
#6
| |||
| |||
| re: How to disable Print Screen function on Windows
maybe it's a little bit late, but there's a tool do disable print screen and snipping tool: ScreeN capture Manager -> is keeps copies of screenshots too |
|
#7
| |||
| |||
| re: How to disable Print Screen function on Windows
these scripts are not working on windows 7.... Kindly tell me how to block print screen in windows 7????????????? |
|
#8
| ||||
| ||||
| re: How to disable Print Screen function on Windows Quote:
Code: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] "Scancode Map"=hex:00,00,00,00,00,00,00,00,04,00,00,00,2a,e0,37,e0,00,00,37,e0,00,00,54,00,00,00,00,00
__________________ Education, Career and Job Discussions |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to disable Print Screen function on Windows" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Print screen function spoils the picture in Toshiba laptop | Arup Singh | Portable Devices | 6 | 17-02-2012 10:45 PM |
| disable Print Screen | akbar | Active Directory | 2 | 05-08-2009 09:19 PM |
| How to disable the CD-ROM autorun function in Windows XP? | CheckMeNot | Tips & Tweaks | 2 | 25-12-2008 08:21 AM |
| Capture Screen Shots in Windows Using the Print Screen Key | Deffen-Baugh | MediaCenter | 2 | 20-03-2007 03:00 AM |
| Print Screen Function | dave@at | Windows XP Support | 3 | 14-03-2007 11:48 AM |