🖥️ Batch (CMD)

Check "Disable First Logon Animation" Status (Batch)

Uses reg query to check the current value behind the "Disable First Logon Animation" tweak.

By WindowsScripting.com · 505 B
CheckDisableFirstLogonAnimationStatus.bat
@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