Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mcleary/4699859fc552507234992e78b305d448 to your computer and use it in GitHub Desktop.
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'
$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