Hi there,
I am developing an application where in I need to launch a "Client exe" (.NET Winform app) from a Web page (which could be either in an Intranet/Intranet application).
I am able to successfully launch the executable using _javascript_, using the following code ......
function OpenExe()
{
var os = new ActiveXObject("WScript.Shell");
var params = "C:\Test.exe param1 param2";
var s = os.Run(params);
return;
}
But to achive the following I need to Manually enable the IE security setting �Initialize and script ActiveX controls not marked as safe� in the respective zone.
My Question is:"How can I automate this Manual process of modifying the IE security settings ?"
thanx in advance,
Saurabh