js调用本土exe文件
js调用本地exe文件
function executeCommands()
{
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "C:\\Program Files\\MDS-SVP\\IPDispatcher.exe";
oShell.ShellExecute(commandtoRun, "", "", "open", "1");
}
function executeCommands()
{
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "C:\\Program Files\\MDS-SVP\\IPDispatcher.exe";
oShell.ShellExecute(commandtoRun, "", "", "open", "1");
}