Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / Disable First User Sign-In Animation in Windows 10 and 11

February 27, 2023 Group PoliciesWindows 10Windows 11

Disable First User Sign-In Animation in Windows 10 and 11

When a user signs in to Windows for the first time, a system creates their profile, copies settings, installs UWP apps, and does some other things. This takes some time, so the user is shown some welcome messages aimed at making the wait shorter (Hi , We’re setting things up for you , We’ve got some updates for your PC , This might take several minutes). In most cases, you don’t need this first sign-in animation (especially on corporate devices) that annoys a user who has to wait extra time for their desktop to appear.

You may disable the first sign-in animation on Windows 11 and 10.

first sign-in animation in Windows 11 and 11

Contents:
  • Turn Off User First Sign-In Animation Using GPO
  • How to Disable the First Sign-In Animation in Windows via the Registry?

Turn Off User First Sign-In Animation Using GPO

You can disable the first sign-in animation in Windows with a special GPO option.

  1. Start the Local (gpedit.msc) or Domain (gpmc.msc) Group Policy Editor and navigate to Computer Configuration -> Administrative Templates -> System -> Logon;
  2. Open the option Show first sign-in animation and change it to Disabled; GPO option: Show first sign-in animation - Disabled
  3. Save the changes.
  4. Update the Group Policy settings on users’ computers using the gpupdate /force command or by restarting the computer.

How to Disable the First Sign-In Animation in Windows via the Registry?

Show first sign-in animation policy described above matches the EnableFirstLogonAnimation registry parameter. So, you may disable long welcome screens at the first user sign-in directly through the registry. Create a DWORD parameter with the name EnableFirstLogonAnimation and the value 0 under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System.

EnableFirstLogonAnimation registry parameter

In order to create a registry parameter using PowerShell, run the command below:

New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System -Name EnableFirstLogonAnimation -Value 0 -Force

You can create a registry parameter manually, change a reg key using GPO, or add directly to a reference Windows image you deploy to computers using SCCM/ WDS.

You can also make changes to a Windows installation image on a USB flash drive using the unattend.xml file:

<RunSynchronousCommand wcm:action="add">
<Description>Disable FirstLogon animation in Windows</Description>
<Order>5</Order>
<Path>reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f</Path>
</RunSynchronousCommand>

After that, a user will see the default Windows preparation screen (Preparing Windows) at the first sign-in instead of the animation messages while Windows is creating a user profile.

preparing windows at first user sign in

Meanwhile, the time until the Desktop appears after the first user sign-in is significantly reduced (two or three times).

Be sure to disable first sign-in on animation for VDI and terminal solutions with non-persistent Windows images or user profiles.

0 comment
4
Facebook Twitter Google + Pinterest
previous post
PowerShell: Unable to Resolve Package Source
next post
Configure Google Chrome Settings with Group Policy

Related Reading

How to Connect VPN Before Windows Logon

November 14, 2023

Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

November 7, 2023

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

How to Use Ansible to Manage Windows Machines

September 25, 2023

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • How to Connect VPN Before Windows Logon

    November 14, 2023
  • Removing Azure Arc Setup Feature on Windows Server 2022

    November 9, 2023
  • Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

    November 7, 2023
  • Send Emails with Microsoft Graph API and PowerShell

    November 6, 2023
  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Updating List of Trusted Root Certificates in Windows
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Configure Google Chrome Settings with Group Policy
  • How to Delete Old User Profiles in Windows
  • Allow Non-admin Users RDP Access to Windows Server
  • How to Backup and Copy Local Group Policy Settings to Another Computer
  • How to Find the Source of Account Lockouts in Active Directory
Footer Logo

@2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


Back To Top