Skip to content
This repository was archived by the owner on May 28, 2021. It is now read-only.

Commit 0138d07

Browse files
CruzMarcioDisassembler0
authored andcommitted
Add verbose startup/shutdown status messages (#198)
1 parent 6df419c commit 0138d07

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

Default.preset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 ###
120121
ShowKnownExtensions # HideKnownExtensions

Win10.psm1

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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
##########

0 commit comments

Comments
 (0)