I tried to put two jar commands in a batch file, but it just won't work.
At first I tried this:
@echo off
"C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -jar Soulsplit.jar
"C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -jar Soulsplit.jar
I've also tried:
@echo off
"C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -jar Soulsplit.jar & "C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -jar Soulsplit.jar
if I run those batch files, they will just do one line, I hope someone could help! It will only run the first command, I expect it to start up two programs.
Just putting one line of command:
@echo off
"C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -jar Soulsplit.jar
does work.