I got tired of running the things all day, e'rday, so I made a batch file that would do it for me and I don't have to go looking through folders anymore.
Just create a new text file and save it as something like "isLaunch.bat" wherever you will remember. (desktop) (** Don't forget, that you might have extensions hidden, so renaming it might turn it into isLaunch.bat.txt so turn off "Hide File Extensions for Known File Types" in the folder options)
Code:
e:
cd E:\Games\isBoxer\
REM Running AuthServer
start /min isBoxer_Server_v2.exe
TIMEOUT /T 3
REM Run InnerSpace
start InnerSpace.exe
pause
exit
Example of mine, you will want to change your folders to wherever you have isBoxer located. These are the first two lines. First line changes to the drive it's on, the second changes to the directory.
isBoxer_Server_v2.exe is a dos window and I got sick of it, so the next line states that it is running it minimized so we don't have to look at its ugly mug anymore.
then it does a timeout or waits for a keypress. I did this because I don't want to write a complicated grep line in here, and it's not needed on most peoples computers. I just put a 3 second delay in here, you can change it to whatever you want depending on how long it takes for your computer to run the AuthServer.
Then it finally runs InnerSpace. Then you can launch any game/character set like normal.