• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Open multiple programs with a .bat file

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

kristian221

Member
Joined
Apr 16, 2011
Is there a way I can open 4 different .bat files with a single .bat file? I used

START /MAX A:\Servers\Minecraft Servers\Adventure Map.bat

I believe the problem is the spaces, so I replaced them with underscores, but it did not like that either. Just trying to make file open multiple servers. Any ideas?
 
Hmmm now it just opens up with a command prompt showing the directory, is there something I did not type it to make it execute Adventure Map.bat?
 
Sorry, I don't know Windows command line good enough to help out.
 
Is the line formatted like this?

START /MAX "A:\Servers\Minecraft Servers\Adventure Map.bat"

(Did you put the quotes in the right place?)
 
Will the CALL command work for you?

CALL "A:\Servers\Minecraft Servers\Adventure Map.bat"

Seems start doesn't work with batch files, after running testing here.

Full disclosure: I've never had to run a .bat from a .bat before. Typically its a vb file if anything.
 
Hmmm well really if there is any way to make some .bat files open at the same time it would work, it doesn't have to be a .bat file that opens the other .bat files. Any file would do.
 
Back