| 
				 My Start.bat file 
 Here is what my Start.bat file has.
 --------------------------------------------------------
 @echo off
 start minilogin
 start world
 echo Please wait for World to connect into login server...
 Pause
 start eqlaunch zone
 --------------------------------------------------------
 
 I've also tried it like this.
 
 --------------------------------------------------------
 @echo off
 start minilogin
 start world
 echo Please wait for World to connect into login server...
 Pause
 start eqlaunch
 startzone
 --------------------------------------------------------
 |