1 <script language=VBscript>
2   Set WshShell = CreateObject("WScript.Shell")
3   WshShell.Run "%windir%\notepad" ,3,false 
4 </script>
5 

但是这要看客户端IE的安全设定
1 <script language=javascript>
2 <!--
3 function aa(){
4 var WshShell = new ActiveXObject("WScript.Shell");
5 var oExec = WshShell.Exec("notepad");
6 }
7 -->

相关文章:

  • 2022-12-23
  • 2021-12-22
  • 2021-12-06
  • 2021-10-04
  • 2022-12-23
  • 2022-01-28
  • 2022-12-23
  • 2021-12-05
猜你喜欢
  • 2021-05-17
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
相关资源
相似解决方案