@echo off
echo Shutting down in 30 seconds.
choice /c ca /n /t 30 /d c /m "Push (a) to abort or (c) to shutdown immediately:"
if errorlevel 2 (
    echo Shutdown aborted by user.
    goto end
)
shutdown /s /t 0
:end