Svira
Banned User
- Joined
- Jan 27, 2008
- Messages
- 361
- Solutions
- 13
- Reaction score
- 104
I saw that many people using Windows have problems with the auto restarter that monitors the tfs process, even if there is one on the forum, it does not save logs for Windows, which can be helpful in the event of various failures. Below is a restarter that starts 3 consoles:
1. Monitors the server (makes sure the process is active)
2. Server console
3. Streaming server console (sends logs to OUTPUT.LOG)
I hope it will be useful
1. Monitors the server (makes sure the process is active)
2. Server console
3. Streaming server console (sends logs to OUTPUT.LOG)
I hope it will be useful

Bash:
@echo off
set SERVER_DIR=SERVER PATH sample x:/ots/tfs
set LOG_FILE=%SERVER_DIR%\output.log
:check
tasklist | find "theforgottenserver.exe" > nul
if %errorlevel% neq 0 (
echo Server is not running. Starting the server...
start "TFS_Server" /D "%SERVER_DIR%" cmd /c "start theforgottenserver.exe & theforgottenserver.exe > %LOG_FILE% 2>&1"
) else (
echo Server is running.
)
timeout /t 10 /nobreak > nul
goto check