Last active
June 13, 2025 16:47
-
-
Save d4rkeagle65/c6e824a597470c6a509010ece4fb6ef9 to your computer and use it in GitHub Desktop.
Windows 11 Show All System Tray Icons
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
$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 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.