🖥️ Batch (CMD)
Disable First Logon Animation (Batch)
Skips the "Hi, we are setting things up for you" first-logon animation (requires admin). Requires an elevated (Administrator) prompt. Applies the tweak via reg.exe.
SetDisableFirstLogonAnimation.bat
@echo off
:: ============================================================
:: SetDisableFirstLogonAnimation.bat
::
:: Disable First Logon Animation.
:: Skips the "Hi, we are setting things up for you" first-logon animation (requires admin). Requires an elevated (Administrator) prompt.
:: ============================================================
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableFirstLogonAnimation" /t REG_DWORD /d "0" /f
if %ERRORLEVEL% EQU 0 (
echo Disable First Logon Animation applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause