:
:start
cls
color 2F
echo. ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
echo.
echo Please choose whether to shut down immediately
echo. ----------------------
echo Automatically select for: immediate in 8 seconds
echo. ----------------------
echo Please enter (Y immediate/N later) to choose
echo.
echo. ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
choice /c:YN /d Y /t 8 /N
if errorlevel 255 goto start
if errorlevel 2 goto a
if errorlevel 1 goto b
if errorlevel 0 goto start
:b
color 2F
echo.
echo.
echo You chose to shut down immediately
shutdown -s -t 0
exit
:a
color f2
echo.
echo.
echo You chose to shut down later
shutdown -a
exit
:start
cls
color 2F
echo. ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
echo.
echo Please choose whether to shut down immediately
echo. ----------------------
echo Automatically select for: immediate in 8 seconds
echo. ----------------------
echo Please enter (Y immediate/N later) to choose
echo.
echo. ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
choice /c:YN /d Y /t 8 /N
if errorlevel 255 goto start
if errorlevel 2 goto a
if errorlevel 1 goto b
if errorlevel 0 goto start
:b
color 2F
echo.
echo.
echo You chose to shut down immediately
shutdown -s -t 0
exit
:a
color f2
echo.
echo.
echo You chose to shut down later
shutdown -a
exit
