Building a batch file to run exe files sequentially

前端 未结 4 1716
眼角桃花
眼角桃花 2021-01-12 01:21

I just start to learn how to build batch file. ( on the windows 7 environment)

I want to build the batch file which is able to run .exe files sequentially .

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-12 01:44

    This will start each file and wait for it to complete and then launch the next one.

    @echo off
    start "" /w /b "d:\MyDriver.exe"
    start "" /w /b "d:\YouDriver.exe"
    start "" /w /b "d:\Mysoftware.exe"
    

提交回复
热议问题