使用bat文件顺序执行多个应用程序

假如你要实现以下功能:

运行一个文件,可以顺序执行多个应用程序,可以使用一下方法来实现

假如有a.exe、b.exe和c.exe三个文件

步骤:

1.新建文本文档,讲后缀名改成.bat

2.编辑该文件,添加以下信息

start /wait a.exe
start /wait b.exe
start /wait c.exe 3.保存该文件就OK了 TEST
原文地址:https://www.cnblogs.com/immensity/p/1320508.html