@echo off setlocal cd /d "%~dp0" if not exist "TTAutoUp.exe" ( echo TTAutoUp.exe not found. Put this file in the Options installation folder and run it again. pause exit /b 1 ) if not exist "Data\" ( echo Data folder not found next to TTAutoUp.exe. pause exit /b 1 ) echo Updating Options from this folder: echo %CD% echo. echo Close Options before continuing. pause TTAutoUp.exe --install-dir="%CD%" --target-version=4.608 --manifest-url="https://www.timetabler.com/upgrades/OP8r-2026/manifests/manifest-4.608-win32.json" --profile=options --main-exe=TTOpt.exe --platform=win32 --data-dir="%CD%\Data" --from-version=4.607 set ERR=%ERRORLEVEL% if not "%ERR%"=="0" ( echo. echo Updater exited with code %ERR%. pause ) exit /b %ERR%