From 720b72b1e1bb47a356c5db2cd31dbcdb6311c6b3 Mon Sep 17 00:00:00 2001 From: Rohan Barar Date: Mon, 25 Aug 2025 15:10:57 +1000 Subject: [PATCH] update batch script for unattended execution --- oem/install.bat | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/oem/install.bat b/oem/install.bat index c13af96..dea61e1 100644 --- a/oem/install.bat +++ b/oem/install.bat @@ -13,8 +13,12 @@ echo ============================================ echo WinApps Setup Wizard echo ============================================ echo. -echo Press any key to continue or close this window to cancel... -pause >nul +echo Waiting 5 seconds before starting... +for /l %%i in (5,-1,1) do ( + nul +) +echo. echo. echo [INFO] Starting setup... @@ -83,5 +87,9 @@ if %ERRORLEVEL% neq 0 ( ) echo. -echo Press any key to exit... -pause >nul \ No newline at end of file +echo Exiting in 10 seconds... +echo Press Ctrl+C to pause. +for /l %%i in (10,-1,1) do ( + nul +) \ No newline at end of file