Batch File Question

athomas

Geek Trainee
I run 5 steam servers off of one box. All of the servers start with a batch file. My question is this: Is it possible to write one batch file to open all five batch files? If so, is it just...
Code:
start whatever.bat
...five times ... or something else?
 
so just do...

start C:\blahblah\1.bat
start C:\blahblah\2.bat

so on and so on

You could do that, but there's a better way.

Code:
cd C:\blahbla
start 1.bat
start 2.bat

At the first like you open the folder were the files are located, so the next lines only need to contain the file name :)
 
Back
Top