Skip to content

Instantly share code, notes, and snippets.

@d4rkeagle65
Last active June 13, 2025 16:47
Show Gist options
  • Save d4rkeagle65/c6e824a597470c6a509010ece4fb6ef9 to your computer and use it in GitHub Desktop.
Save d4rkeagle65/c6e824a597470c6a509010ece4fb6ef9 to your computer and use it in GitHub Desktop.
Windows 11 Show All System Tray Icons
$RegistryPath = 'HKCU:\Control Panel\NotifyIconSettings'
$Name = 'IsPromoted'
$Value = '1'
Get-ChildItem -path $RegistryPath -Recurse | ForEach-Object {New-ItemProperty -Path $_.PSPath -Name $Name -Value $Value -PropertyType DWORD -Force }
@d4rkeagle65
Copy link
Author

Found this scriptlet to fix an annoyance as the hidden setting does not seem to work anymore. I can't find the OP to credit, if I do I will add as credit should always be due.

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