1. 程式人生 > >使用bat檔案順序執行多個應用程式

使用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