
Originally Posted by
Aaron
It would just take away some of the complication, if you could get the files to run locally on that machine, rather than being downloaded to yours

ok, help me, lol. i'm stuck.
I've got batch files that update etc. like so..:
Code:
@ECHO OFF
Echo Changing Directory to C:\Dedicated Servers\Steam
cd "C:\Dedicated Servers\Steam"
Echo Updating Counter-Strike: Source
Start "Counter-Strike: Source Update" /WAIT HldsUpdateTool.exe -command update -game "Counter-Strike Source" -dir "C:\Dedicated Servers\Steam\CounterStrikeSource"
Echo Finished...
Echo Updating Left 4 Dead
Start "Left 4 Dead Update" /WAIT HldsUpdateTool.exe -command update -game left4dead -dir "C:\Dedicated Servers\Steam\Left4Dead"
Echo Finished...
Echo Updating Left 4 Dead 2
Start "Left 4 Dead 2 Update" /WAIT HldsUpdateTool.exe -command update -game left4dead2 -dir "C:\Dedicated Servers\Steam\Left4Dead2"
Echo Finished...
Echo Updating Team Fortress 2
Start "Team Fortress 2 Update" /WAIT Hldsupdatetool.exe -command update -game tf -dir "C:\Dedicated Servers\Steam\TeamFortress2"
Echo Finished...
Echo Updating Synergy
Start "Synergy Update" /WAIT HldsUpdateTool.exe -command update -game synergy -dir "C:\Dedicated Servers\Steam\Synergy"
Echo Finished...
Echo Update Completed...
pause
And what I use to run the Team Fortress 2 Server...
Code:
@ECHO OFF
Echo Changing Directory to F:\Dedicated Servers\Steam\TeamFortress2\orangebox
cd "F:\Dedicated Servers\Steam\TeamFortress2\orangebox"
Echo Launching Team Fortress 2 Server
Start "Team Fortress 2 Dedicated Server" srcds.exe -console -game tf -hostport 27015 +maxplayers 24 +map ctf_2fort
You're talking about a web interface that executes those batch files? right? what about displaying the Server console?