123r789
123r789

Reputation: 1800

How to run the batch file commands sequential?

I am trying to call the 2 batch files in another batch file.But the batch files are running parallel. I want to run those batch files one after another.

Please provide the solution if any?

Upvotes: 1

Views: 293

Answers (1)

max_
max_

Reputation: 324

call batch1.cmd
call batch2.cmd

There you go.

Upvotes: 1

Related Questions