@echo off
:: ============================================================
:: CheckDisableFirstLogonAnimationStatus.bat
::
:: Checks whether "Disable First Logon Animation" is currently applied.
:: ============================================================

reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableFirstLogonAnimation" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'EnableFirstLogonAnimation' is not set (using the Windows default^).
)
pause