update batch script for unattended execution

This commit is contained in:
Rohan Barar
2025-08-25 15:10:57 +10:00
parent cba641f1cf
commit 720b72b1e1

View File

@@ -13,8 +13,12 @@ echo ============================================
echo WinApps Setup Wizard echo WinApps Setup Wizard
echo ============================================ echo ============================================
echo. echo.
echo Press any key to continue or close this window to cancel... echo Waiting 5 seconds before starting...
pause >nul for /l %%i in (5,-1,1) do (
<nul set /p="%%i... "
timeout /t 1 >nul
)
echo.
echo. echo.
echo [INFO] Starting setup... echo [INFO] Starting setup...
@@ -83,5 +87,9 @@ if %ERRORLEVEL% neq 0 (
) )
echo. echo.
echo Press any key to exit... echo Exiting in 10 seconds...
pause >nul echo Press Ctrl+C to pause.
for /l %%i in (10,-1,1) do (
<nul set /p="%%i... "
timeout /t 1 >nul
)