Forum Discussion
Why Does Windows 11 Keep Hiding My System Tray Icons? (Taskbar Icons Missing)
Solution:
Open PowerShell as Administrator and run the following command:
$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
}
This forces Windows to treat all tray icons as “promoted,” which makes them stay visible.
After running it, all your system tray icons should appear, even after a restart. Enjoy it!
Thank you. Thank you. Thank you.
I was trying to eject a thumb drive and that icon kept disappearing on me (along with its buddies in the system tray). This snippet changes the appearance a little, but hey it works! The double-decker system tray that had been disappearing is replaced with one that's not double-decker but so far hasn't disappeared either.