Last active
March 18, 2025 15:10
-
-
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'
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
Inspired by EliseAv/full_tray. All the goodness with none of the Python.