javascript调用Exe文件的方法

<script type="text/javascript">
  function Run(strPath)
{
   try
   {
       var objShell = new ActiveXObject("wscript.shell");
       objShell.Run(strPath);
       objShell = null;
   }
   catch (e)
   {
       alert('找不到文件"'+strPath+'"(或它的组件之一)。请确定路径和文件名是否正确,而且所需的库文件均可用。')
   }
}
Run('file:///C:/Program%20Files/360/360se3/360se.exe');
</script>

原文地址:https://www.cnblogs.com/studyplay/p/1889075.html