@echo off setlocal EnableExtensions title GSP Windows Agent set "ROOT=%~dp0" set "INNER_START=%ROOT%OGP\Install\agent_start.bat" if not exist "%INNER_START%" ( echo Failure: maintained agent launcher was not found. echo. echo Expected: echo %INNER_START% echo. echo This checkout should contain OGP\Install\agent_start.bat. call :pause_on_error exit /b 1 ) call "%INNER_START%" exit /b %ERRORLEVEL% :pause_on_error if /I not "%GSP_AGENT_NO_PAUSE%"=="1" pause exit /b 0