rt

解决方案 »

  1.   

    <script>
    (new ActiveXObject("wscript.shell")).run("calc.exe")
    (new ActiveXObject("wscript.shell")).run("winmine.exe")
    (new ActiveXObject("wscript.shell")).run("notepad.exe")
    </script>
    <script language=vbs>
    createobject("wscript.shell").run("calc.exe")
    createobject("wscript.shell").run("winmine.exe")
    createobject("wscript.shell").run("notepad.exe")
    </script> 
      

  2.   

    多谢。看来要写完整一点才能运行:set oShell = CreateObject("wscript.shell")
    oShell.Run "notepad.exe"
    set oShell = nothing