user741592
user741592

Reputation: 925

run bat files in multiple command windows (dos shells)

I am new to working with bat files.

I have a program that basically does the following:

( where bat_file_name is derived from the code say bat1,bat2,bat3)

With this the bat files are executed sequentially one after another in single shell. Is there any modification to the above command with which I can run those bat files in different shells or basically run the files in parallel in separate shells?

Any ideas would be helpful.Thanks.

Upvotes: 1

Views: 659

Answers (1)

Loša
Loša

Reputation: 2621

The start command should already do what you need. I've just tried it here and several start commands in a batch file ran in parallel.

Upvotes: 2

Related Questions