Benutzereingabe anfrage
Benutzereingabe anfragen:
set /P choice= Do you want to bort or nlock the directory?
if /I "%choice%"=="a" goto abort
if /I "%choice%"=="c" goto continue
echo Invalid choice: [%choice%]
goto :eof
:abort
exit /b 1
:continue
@echo. Continuing...
|