pstein

Extraordinary Member
Joined
Mar 20, 2010
Messages
454
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
Joined
Jul 4, 2015
Messages
8,998
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