js调用本地exe文件

function executeCommands() 

 
var oShell = new ActiveXObject("Shell.Application"); 
 
var commandtoRun = "C:\\Program Files\\MDS-SVP\\IPDispatcher.exe"; 
 
oShell.ShellExecute(commandtoRun, "", "", "open", "1"); 
}

你可能感兴趣的:(exe)