🖥️ Batch (CMD)
Disable Window Animations (Batch)
Disables minimize/maximize window animations for a snappier feel. Applies the tweak via reg.exe.
SetDisableAnimations.bat
@echo off
:: ============================================================
:: SetDisableAnimations.bat
::
:: Disable Window Animations.
:: Disables minimize/maximize window animations for a snappier feel.
:: ============================================================
reg add "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /v "MinAnimate" /t REG_SZ /d "0" /f
if %ERRORLEVEL% EQU 0 (
echo Disable Window Animations applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause