Panel/Agent-Windows/OGP64/agent_start.bat
2026-06-07 16:04:39 -05:00

20 lines
397 B
Batchfile

@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.
pause
exit /b 1
)
call "%INNER_START%"
exit /b %ERRORLEVEL%