hello ,
i am working on application of running an exe on client side i use following javascript for this
var theShell = new ActiveXObject("Shell.Application");
var theApp = "C:\\Windows\\Notepad.exe";
theShell.ShellExecute(theApp, "", "", "open", "1");
but when i run the application on any system i got the error message is permission denied on this line (theShell.ShellExecute(theApp, "", "", "open", "1"); , i try alot to get rid of it but not finding any solution , can anybody help me plz?
thanks