美文网首页
windows 一键打开多个程序 方法之一

windows 一键打开多个程序 方法之一

作者: yuyu000 | 来源:发表于2018-12-22 13:52 被阅读10次

    1.新建文本文档 保存后缀为 .vbs

    2.格式如下 写好自己电脑的可执行文件路径

    Dim wsh
    set wsh=createobject("Wscript.shell")
    
    wscript.sleep 1000
    wsh.run "C:\Users\yuyu\AppData\Local\Postman\app-6.2.5\Postman.exe"
    wscript.sleep 5000
    wsh.run "D:\utils\jcpicker.exe"
    wscript.sleep 5000
    wsh.run """C:\Program Files (x86)\Netease\CloudMusic\cloudmusic.exe"""
    
    wscript.quit
    

    示例文件截图如下


    Snipaste_2018-11-12_10-15-44.png

    相关文章

      网友评论

          本文标题:windows 一键打开多个程序 方法之一

          本文链接:https://www.haomeiwen.com/subject/iwhikqtx.html