The lazy programmer scripts
scripts that work

Lazy disable Windows 10 first logon animation GitHub

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!

Written by kami on Thursday August 29, 2019
Permalink - Tags: powershell, windows, windows10, registry

Leave a comment

comments powered by Disqus

« Lazy create ISO from folder - Lazy build qemu-img.exe statically from source »