批处理一键打开多个应用程序
程序员文章站
2022-06-04 08:53:16
...
正经学徒,佛系记录,不搞事情
上班第一件事:打开电脑,打开idea,打开有道,打开navicat,打开钉钉,打开mongochef,打开......
使用批处理后:打开电脑,双击批处理文件
新建批处理文件内容如下,具体应用自行修改 quickStart.bat:
@echo off
echo Starting PLSQL...
start "" "D:\YLZ\PLSQL Developer 12正式版64位+中文语言包+***\plsqldev.exe"
echo Starting sublime...
start "" "D:\QuickStart\sublime"
echo Starting youdao...
start "" "D:\QuickStart\youdao"
echo Starting idea...
start "" "D:\tools\quickStart\idea"
echo Starting mongo...
start "" "D:\tools\quickStart\mongo"
echo Starting navicat...
start "" "D:\tools\quickStart\navicat"
echo Starting SecureCRT...
start "" "D:\tools\quickStart\SecureCRT"
echo Starting xmind...
start "" "E:\desktop\wzh\xxx\xxx.xmind"
echo Starting alwaysup...
start "" "D:\tools\quickStart\alwaysup"
运行带中文的路径会乱码,保存bat文件的时候需要注意编码设置为ANSI
上一篇: 数据库进阶
下一篇: 文件夹取其名称前两位重命名的批处理代码