Created
June 18, 2025 19:34
-
-
Save Novikov-Dev/451742b637cdf0f00b514e5ea179d4c6 to your computer and use it in GitHub Desktop.
Turn all tray icons visible
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
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