I am trying to run a .exe file from Javascript. This is what I have:
var oShell = new
ActiveXObject("Shell.Application");
var commandtoRun = "C:Documents and
SettingsUserDesktopABCD.exe";
oShell.ShellExecute(commandtoRun,"","","open","1");
If I have only the first 2 lines code it seems to work fine (it asked me do I want activeX when I opened it first time in IE) but if I add the last line (ShellExecute) there seems to be an error. I want to pass arguments to the exe.
Does anyone know how to do it ?
Question&Answers:os