HOW TO DISABLE RIGHT CLICK ON THE DESKTOP AND EXPLORER
Right clicing anywhere on the desktop pops up numdber of contextual menu items like paste, copy, properties and others on the screen. however , a number of system administrators would prefer to disable the right click for security reasons.
it is possible to disable the user's ability to right click on the desktop by simply following the below steps:
1. open the regedit.exe file.
2. scroll down to or create the following registry key
HKEY_LOCAL_MACHINE\Software\Microsoft\windows\currentversion\policies\explorer
3. In the right pane, create a new DWORD value named NoViewContextMenu within the above registry key and set its data value to 1 to disable the right click context menu on the desktop, and to 0 to enable it. (note: you may want to completely delete the DWORD value NoViewContextMenu when you want to enable right click.)
4. Exit the windows registry and restart the windows session for the change to be applied
it is possible to implement the above by simply creating and executing a .reg extention file the below:
REGEDIT4
[HKEY_LOCAL_MACHINE\software\Microsoft\windows\currentversion\policies\explorer]
"NoViewContextMenu"="0"
Right clicing anywhere on the desktop pops up numdber of contextual menu items like paste, copy, properties and others on the screen. however , a number of system administrators would prefer to disable the right click for security reasons.
it is possible to disable the user's ability to right click on the desktop by simply following the below steps:
1. open the regedit.exe file.
2. scroll down to or create the following registry key
HKEY_LOCAL_MACHINE\Software\Microsoft\windows\currentversion\policies\explorer
3. In the right pane, create a new DWORD value named NoViewContextMenu within the above registry key and set its data value to 1 to disable the right click context menu on the desktop, and to 0 to enable it. (note: you may want to completely delete the DWORD value NoViewContextMenu when you want to enable right click.)
4. Exit the windows registry and restart the windows session for the change to be applied
it is possible to implement the above by simply creating and executing a .reg extention file the below:
REGEDIT4
[HKEY_LOCAL_MACHINE\software\Microsoft\windows\currentversion\policies\explorer]
"NoViewContextMenu"="0"
No comments:
Post a Comment