Building a batch file to run exe files sequentially

前端 未结 4 1700
眼角桃花
眼角桃花 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:40

    Try and put it in the same directory of the files you want to run. If you can't, use cd C:\Directory\Name to change it to the directory where the MyDriver.exe file is. Then just do MyDriver.exe- you don't need a call or start statement.

    MyDriver.exe
    YouDriver.exe
    MySoftware.exe
    

    use cd at the start if you neeed to.

提交回复
热议问题