Lazy disable Windows 10 first logon animation
The first console / RDP login animation from Windows 10 can be easily disabled in the registry keys using PowerShell
Tested on Windows 10 x64. You need to run the script as Administrator.
#ps1 $registryPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" Set-ItemProperty -Path $registryPath -Name "EnableFirstLogonAnimation" -Value 0 -Type DWORD
That's all, folks!
Tweet