Skip to content

Instantly share code, notes, and snippets.

@psitem
Last active July 7, 2024 20:38
Show Gist options
  • Save psitem/05d01dfbaa6772b871d0f04262fd8699 to your computer and use it in GitHub Desktop.
Save psitem/05d01dfbaa6772b871d0f04262fd8699 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
@psitem
Copy link
Author

psitem commented Dec 29, 2023

Inspired by EliseAv/full_tray. All the goodness with none of the Python.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment