disable right-click "save-image-as" in win7

Kevo77

New member
Local time
3:33 PM
Messages
2
I would like to disable the right-click context menu's "save-image-as" command in the registry.
Not by using Java script or whatever on a web page...
I am comfortable making registry edits.
NOT the whole menu! Just that particular command, so that users are inhibited from copying images on browser web pages.
I know there are other ways to copy online images, but I'd still like to remove at least this particular convenience for doing so.
Thanks for your help
 

My Computer My Computer

At a glance

win7 64bit Home Premium
Computer type
PC/Desktop
OS
win7 64bit Home Premium
Add this code to the body section in your web page. It will disable the right click on your web page,

Code:
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus ([email protected]) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 
</script>
 

My Computer My Computer

At a glance

7 Ultimate x 32
Computer type
PC/Desktop
Computer Manufacturer/Model Number
HP
OS
7 Ultimate x 32
Thanks but thats not the issue. I dont have a web page. I want to disable this on the user side on a particular win7 pc.
 

My Computer My Computer

At a glance

win7 64bit Home Premium
Computer type
PC/Desktop
OS
win7 64bit Home Premium
Back
Top