@echo off
start d:\1.bat
start c:\2.bat
这样是2个任务同时执行,应该怎么改,谢谢
@echo off
start /wait d:\1.bat
start /wait c:\2.bat
@echo off
call d:\1.bat
call c:\2.bat
start 是在新窗口运行调用的文件,call是在当前的窗口运行。 start /wait是指启动应用程序并等待其结束
顺序执行bat的方式是使用call xxx.bat
来源:CSDN
作者: 阿留
链接:https://blog.csdn.net/qq_38681231/article/details/103487856