Files
Inv_web/build_client_agent_windows.bat
2026-07-09 15:54:31 +03:00

16 lines
275 B
Batchfile

@echo off
setlocal
cd /d "%~dp0"
call "%~dp0build_client_agent_v2_installer_windows.bat"
if errorlevel 1 (
echo.
echo Installer build failed. Read the error above.
pause
exit /b 1
)
echo Starting installer...
start "" "%~dp0dist\Inv_web_Client_Setup.exe"
exit /b 0