-
-
Save mcleary/4699859fc552507234992e78b305d448 to your computer and use it in GitHub Desktop.
Sets all Windows Taskbar Notification Icons to Visible. Should probably be in a Scheduled Task set to run 'At log on' and 'Repeat task every: 1 hour'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$basePath = 'HKCU:\Control Panel\NotifyIconSettings\' | |
Get-ChildItem -Path $basePath | ` | |
ForEach-Object { Get-ItemProperty "$basePath$($_.PSChildName)" } | ` | |
Set-ItemProperty -Name 'IsPromoted' -Value 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment