To run job in parallel in batch

Hi,

I am using a batch file to run 2 or more shutdown batch for each of my server like below:

Shutdown_serverA.bat
Shutdown_serverB.bat
...

Is there anyway i can do this in parallel instead of serially:confused:
ServerA & ServerB shutdown at the same time in one click (batch).

is it windows batch file ?

Yes, Windows batch.

 echo off
start  /min Shutdown_serverA.bat
start  /min Shutdown_serverB.bat
exit

1 Like

That's the last piece of the puzzle i needed. Thanks a lot for your help.:b: