how to run multiple batch files in serial, in windows command line environment

后端 未结 5 1537
南笙
南笙 2020-12-20 11:22

I have a batch file,

bat1.bat
bat2.bat

but it stops at the end of bat1

any clues?

5条回答
  •  悲哀的现实
    2020-12-20 11:38

    In order to run the multiple .exe files in one go, firstly you need to create .bat file and then add all of your .exe files as below:

      D:\Data\Feed.exe Books.xml
      D:\Data\Feed.exe Mobile.xml
      D:\Data\Feed.exe Clothes.xml
    

    And then save as something.bat then give it a run with cmd.

提交回复
热议问题