Forum Discussion
"Show all icons in system tray" option in windows11
- Dec 18, 2022
To always show all the Icons in the System Tray or Notification area of Windows 11/10, follow these steps:
1. Press Win+R to open the Run prompt.
2. Enter this value: explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}
3. Tick the Always show all icons and notifications on the taskbar checkbox.
4. Click the OK button.Hope this helps everyone!
Powershell as admin:
$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 }
All system tray icons now showing, even after restart, enjoy ..
THIS IS THE TOP
- BobbertApr 09, 2025Brass Contributor
NO! It makes current list of icons show. Anything new will still start hidden and you have to run the script again to unhide them, at which point it's easier to just drag them manually!
We need an option to make notification icons initialize with IsPromoted=1 instead of starting with IsPromoted=0 and having to run a script or drag them manually to change that default.