This repository was archived by the owner on May 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ DisableAdobeFlash # EnableAdobeFlash
164164DisableEdgePreload # EnableEdgePreload
165165DisableEdgeShortcutCreation # EnableEdgeShortcutCreation
166166DisableIEFirstRun # EnableIEFirstRun
167+ DisableFirstLogonAnimation # EnableFirstLogonAnimation
167168# UninstallMediaPlayer # InstallMediaPlayer
168169# UninstallInternetExplorer # InstallInternetExplorer
169170# UninstallWorkFolders # InstallWorkFolders
Original file line number Diff line number Diff line change @@ -2706,6 +2706,18 @@ Function EnableIEFirstRun {
27062706 Remove-ItemProperty - Path " HKLM:\SOFTWARE\Policies\Microsoft\Internet Explorer\Main" - Name " DisableFirstRunCustomize" - ErrorAction SilentlyContinue
27072707}
27082708
2709+ # Disable "Hi!" First Logon Animation (it will be replaced by "Preparing Windows" message)
2710+ Function DisableFirstLogonAnimation {
2711+ Write-Output " Disabling First Logon Animation..."
2712+ Set-ItemProperty - Path " HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" - Name " EnableFirstLogonAnimation" - Type DWord - Value 0
2713+ }
2714+
2715+ # Enable "Hi!" First Logon Animation
2716+ Function EnableFirstLogonAnimation {
2717+ Write-Output " Enabling First Logon Animation..."
2718+ Remove-ItemProperty - Path " HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" - Name " EnableFirstLogonAnimation" - ErrorAction SilentlyContinue
2719+ }
2720+
27092721# Uninstall Windows Media Player
27102722Function UninstallMediaPlayer {
27112723 Write-Output " Uninstalling Windows Media Player..."
You can’t perform that action at this time.
0 commit comments