过客
过客
Published on 2023-12-15 / 6 Visits
0
0

bat脚本启动程序

在Windows中bat批处理脚本可以使用start命令来启动程序。

如启动微信:

start /d "C:\Program Files (x86)\Tencent\WeChat" WeChat.exe
  • /d 后面配置启动根目录

Comment