Wait for multiple applications run asynchronously from batch file to finish

后端 未结 6 1455
再見小時候
再見小時候 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-13 21:55

    Powershell has more sophisticated ways to do it without wait loops. You can wrap or call your scripts with powershell and even implement your preferred managed solutions for doing it exactly as you do it in C#.

提交回复
热议问题