<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>

相关文章:

  • 2021-07-15
  • 2021-06-08
  • 2022-12-23
  • 2022-02-16
  • 2022-01-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-27
  • 2022-12-23
  • 2021-06-01
  • 2021-09-20
  • 2021-12-03
  • 2022-01-30
  • 2021-12-06
相关资源
相似解决方案