Wait for multiple applications run asynchronously from batch file to finish

后端 未结 6 1440
再見小時候
再見小時候 2020-12-13 21:15

There is a simple Windows batch file that runs multiple instances of application:

start app.exe param1
start app.exe param2

Is there a way

6条回答
  •  感情败类
    2020-12-13 21:49

    You are starting several instances of the same app.exe?

    • start them all
    • loop tasklist |find "app.exe" until %errorlevel% is 1
    • continue with your script

提交回复
热议问题