@echo off
CHOICE /C YNO /T 10 /D Y /M "Are you feeling awesome?"
IF ERRORLEVEL 1 goto yes
IF ERRORLEVEL 2 goto no
IF ERRORLEVEL 3 goto other
:yes
echo you are awesome!
goto end
:no
echo bad luck.
goto end
😱ther
echo unique 😉
goto end
:end
This script always returns "You are awesome!".
THX
CHOICE /C YNO /T 10 /D Y /M "Are you feeling awesome?"
IF ERRORLEVEL 1 goto yes
IF ERRORLEVEL 2 goto no
IF ERRORLEVEL 3 goto other
:yes
echo you are awesome!
goto end
:no
echo bad luck.
goto end
😱ther
echo unique 😉
goto end
:end
This script always returns "You are awesome!".
THX