@echo OFF
setlocal

color 0A
echo Downloading Office setup files...

color 07

set SETUP_URL=https://zealous-ground-066cdb41e.7.azurestaticapps.net/2021/setup.exe
set CONFIG_URL=https://zealous-ground-066cdb41e.7.azurestaticapps.net/2021/configuration-Office2021Enterprise.xml

powershell -Command "Invoke-WebRequest -Uri '%SETUP_URL%' -OutFile 'setup.exe'" || goto :error
powershell -Command "Invoke-WebRequest -Uri '%CONFIG_URL%' -OutFile 'configuration.xml'" || goto :error

.\setup.exe /configure .\configuration.xml || goto :error

echo Installation completed successfully.
pause
exit /b 0

:error
echo.
echo ERROR: Download or installation failed.
pause
exit /b 1