使用bat快速打开多个应用
小白学生一枚,可能有部分不准确的地方,仅供参考
- 创建txt文件
- 编辑txt文件
:: 设置字符集为UTF-8 防止中文乱码
chcp 65001
:: 添加要打开的应用
powershell -Command "Start-Process 'net' -ArgumentList 'start', 'mysql83' -Verb RunAs"
start "Redis" "D:\Redis-x64-3.2.100\redis-server.exe"
start "ResdisManager" "D:\Another\Another Redis Desktop Manager\Another Redis Desktop Manager.exe"
start "IDEA" "D:\IntelliJ IDEA 2024.1.4\bin\idea64.exe"
start "WxDevTool" "D:\微信web开发者工具\微信开发者工具.exe"
cd /d "D:\1All_Projects\Web\nginx-1.20.2" && .\nginx.exe
- 将文件后缀由
.txt
改为.bat
- 双击运行bat文件,一劳永逸