Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Novikov-Dev/451742b637cdf0f00b514e5ea179d4c6 to your computer and use it in GitHub Desktop.
Save Novikov-Dev/451742b637cdf0f00b514e5ea179d4c6 to your computer and use it in GitHub Desktop.
Turn all tray icons visible
https://techcommunity.microsoft.com/discussions/windows11/show-all-icons-in-system-tray-option-in-windows11/3359877
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 ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment