🖥️ Batch (CMD)

Check "Disable Window Animations" Status (Batch)

Uses reg query to check the current value behind the "Disable Window Animations" tweak.

By WindowsScripting.com · 439 B
CheckDisableAnimationsStatus.bat
@echo off
:: ============================================================
:: CheckDisableAnimationsStatus.bat
::
:: Checks whether "Disable Window Animations" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /v "MinAnimate" 2>nul

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