View Single Post
  #2  
Old 10-12-2012, 10:04 PM
opyrus
Hill Giant
 
Join Date: Apr 2008
Location: in doors
Posts: 138
Default

I then took this a step further i made a startup and shutdown batch file.

Startup.bat
Code:
@echo off
Echo Starting Server
start /B minilogin.exe
start /B world.exe
start /B eqlaunch.exe zone
Shutdown.bat
Code:
taskkill /F /IM MiniLogin.exe /T
taskkill /F /IM eqlaunch.exe /T
taskkill /F /IM World.exe /T
taskkill /F /IM Zone.exe /T
Then i grabbed a simple bat to exe converter an made 2 exe files that both run entirely invisible no windows on the desktop from 1 to none =D. now i have a nice neat 1 click startup and shutdown system for my server "abyss".
Reply With Quote