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… start whatever.bat …five times … or something else?
I think you can just add the paths to the other batch files.
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.
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 ![]()