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 @@ -115,6 +115,7 @@ SetVisualFXPerformance # SetVisualFXAppearance
115115# SetSoundSchemeNone # SetSoundSchemeDefault
116116# DisableStartupSound # EnableStartupSound
117117# DisableChangingSoundScheme # EnableChangingSoundScheme
118+ # EnableVerboseStatus # DisableVerboseStatus
118119
119120### Explorer UI Tweaks ###
120121ShowKnownExtensions # HideKnownExtensions
Original file line number Diff line number Diff line change @@ -1797,6 +1797,18 @@ Function EnableChangingSoundScheme {
17971797 Remove-ItemProperty - Path " HKLM:\SOFTWARE\Policies\Microsoft\Windows\Personalization" - Name " NoChangingSoundScheme" - ErrorAction SilentlyContinue
17981798}
17991799
1800+ # Enable verbose startup/shutdown status messages
1801+ Function EnableVerboseStatus {
1802+ Write-Output " Enabling verbose startup/shutdown status messages..."
1803+ New-ItemProperty - Path ' HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System' - Name ' VerboseStatus' - Value ' 1' - PropertyType DWORD - Force
1804+ }
1805+
1806+ # Disable verbose startup/shutdown status messages
1807+ Function DisableVerboseStatus {
1808+ Write-Output " Disabling verbose startup/shutdown status messages..."
1809+ New-ItemProperty - Path ' HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System' - Name ' VerboseStatus' - Value ' 0' - PropertyType DWORD - Force
1810+ }
1811+
18001812# #########
18011813# endregion UI Tweaks
18021814# #########
You can’t perform that action at this time.
0 commit comments