Improve "Install Service" menu (#15571)

This commit is contained in:
Matvey Beloded
2026-06-30 21:11:19 +07:00
committed by GitHub
parent cb6c83d13b
commit 36f4452342

View File

@@ -242,12 +242,18 @@ for /f "delims=" %%F in ('powershell -NoProfile -Command "Get-ChildItem -Literal
set "file!count!=%%F" set "file!count!=%%F"
) )
echo 0. Exit
echo.
:: Choosing file :: Choosing file
set "choice=" set "choice="
set /p "choice=Input file index (number): " set /p "choice=Input option (0-!count!, default: 0): "
if "!choice!"=="" ( if "!choice!"=="" (
echo The choice is empty, exiting... set "choice=0"
pause )
if "!choice!"=="0" (
goto menu goto menu
) )