diff --git a/Default.preset b/Default.preset index 10bdeb04..200ff867 100644 --- a/Default.preset +++ b/Default.preset @@ -163,6 +163,7 @@ DisableAdobeFlash # EnableAdobeFlash DisableEdgePreload # EnableEdgePreload DisableEdgeShortcutCreation # EnableEdgeShortcutCreation DisableIEFirstRun # EnableIEFirstRun +DisableFirstLogonAnimation # EnableFirstLogonAnimation # UninstallMediaPlayer # InstallMediaPlayer # UninstallInternetExplorer # InstallInternetExplorer # UninstallWorkFolders # InstallWorkFolders diff --git a/Win10.psm1 b/Win10.psm1 index 709ce12c..3ffe39e9 100644 --- a/Win10.psm1 +++ b/Win10.psm1 @@ -2693,6 +2693,18 @@ Function EnableIEFirstRun { Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Internet Explorer\Main" -Name "DisableFirstRunCustomize" -ErrorAction SilentlyContinue } +# Disable "Hi!" First Logon Animation (it will be replaced by "Preparing Windows" message) +Function DisableFirstLogonAnimation { + Write-Output "Disabling First Logon Animation..." + Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableFirstLogonAnimation" -Type DWord -Value 0 +} + +# Enable "Hi!" First Logon Animation +Function EnableFirstLogonAnimation { + Write-Output "Enabling First Logon Animation..." + Remove-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableFirstLogonAnimation" -ErrorAction SilentlyContinue +} + # Uninstall Windows Media Player Function UninstallMediaPlayer { Write-Output "Uninstalling Windows Media Player..."