📎 AI Summary:
The user *pstein* reports that their Windows 7 system occasionally hides most system tray icons and seeks a way to recover them without rebooting. *Neemobeer* suggests resolving the issue by clearing specific icon cache registry entries and restarting the Explorer process through PowerShell commands. Overall, the thread offers a technical solution to restore missing tray icons, with a positive tone towards troubleshooting.

pstein

Extraordinary Member
Member details
Joined
Mar 20, 2010
Messages
454
Thread Author #1
Occasionally it happens that most of my SysTray icons disappear resp. are hidden.

See attached snapshot

Whats wrong?

How can I let them re-appear (beside re-boot my 64bit Win7) system?

Peter
 

Attachments

  • invisible SysTray Icons Win7.webp
    invisible SysTray Icons Win7.webp
    4.5 KB · Views: 123
Solution
Open a Powershell prompt and run the following commands

Remove-ItemProperty -Path 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\' -Name IconStreams
Remove-ItemProperty -Path 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\' -Name PastIconsStream
Get-Process -Name explorer |Stop-Process

Neemobeer

Windows Forum Team
Staff member
Member details
Joined
Jul 4, 2015
Messages
8,995
Open a Powershell prompt and run the following commands

Remove-ItemProperty -Path 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\' -Name IconStreams
Remove-ItemProperty -Path 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\' -Name PastIconsStream
Get-Process -Name explorer |Stop-Process
 

Solution