天天看點

bat檔案中調用另外兩個bat運作

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

繼續閱讀