I am writing to registry using javascript.
when i run this javascript code in my HTML page the following warning message appears
An ActiveX control might be unsafe to interact with other parts of the page. Do you want to allow this interaction?
I want to remove this message.
Any Help?
Thanks
Code:
var wsh = new ActiveXObject("WScript.Shell"); var key = "HKLM\\Software\\Neos\\2.0\\LightMode\\my-script"; wsh.RegWrite (key, 1999, "REG_SZ");
An ActiveX control might be unsafe to interact with other parts of the page. Do you want to allow this interaction?
I want to remove this message.
Any Help?
Thanks
Comment