@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。