Notification area inconsistencies


  1. Posts : 117
    Microsoft Windows 10 Home 64-bit 19045 Multiprocessor Free
       #1

    Notification area inconsistencies


    Hello:

    My Notification area shows four application icons, and there is no problems with them.

    When I click the ^ icon, I see 13 icons, all of which I have identified. No problem there either.

    Then, I right-click on the task bar, and click Taskbar Settings > Taskbar > [Notification area] Select which icons appear on the taskbar, and there, I see two problems among the 28 icons appearing:

    1. When clicking the ^ icon (see above), four of the 13 icons are these:

    • Hard Disk Sentinel Engine – Disk: #0
    • Hard Disk Sentinel Engine – Disk: #1
    • Hard Disk Sentinel Engine – Disk: #2
    • Hard Disk Sentinel Engine – Disk: #3

    However, in [Notification area] Select which icons appear on the taskbar, "Hard Disk Sentinel Engine – Disk: #2
    " is absent.

    Would you know a probably explanation to this?


    2. In [Notification area] Select which icons appear on the taskbar, one of my application icons (not among the 13) occurs five times (exactly the same text; not different version of the like).

    While this might be an application problem, I would appreciate your take on it before I ask the developer.

    -----------------

    Thank you in advance.

    Hans L

    PS. I have never been able to find the Notification area in the registry or elsewhere. Are they available, or are they included in software and thus unavailable?
      My Computer


  2. Posts : 43,242
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #2

    PS. I have never been able to find the Notification area in the registry or elsewhere. Are they available, or are they included in software and thus unavailable?
    Hi, for these settings (e.g.)
    Notification area inconsistencies-snap-2019-04-16-18.29.43.png
    you could try using Regshot (free) to
    - capture Shot1 before changing one - wait..
    - capture Shot2 after changing one - wait..
    - compare to get an html page in your browser showing registry changes.
      My Computers


  3. Posts : 117
    Microsoft Windows 10 Home 64-bit 19045 Multiprocessor Free
    Thread Starter
       #3

    Okay, Dalchina, I will try it and see what happens with Hard Disk 2.

    Thanks/Hans L

    - - - Updated - - -

    Dalchina, don't know if I missed it, or if it became visible after a number of 'clicks', but Disk 2 now shows up in [Notification area] Select which icons appear on the taskbar.

    Don't think I missed it, because I also noticed that it was missing a week ago, when I looked at this the first time.

    As for RegShot, it works, but it shows different number of keys etc. every time I click Shot.

    Well, it showed 10 changes after I put Disk 2 into the Notification area, but some of the changes had so much data in them, that it was impossible to see what changed (no color indication, for instance, of differences).

    I have asked the developer about the four occurrences of the same data.

    Now, a remaining question is, who decides which 13 icons of the total of 28 that should appear when you click the ^ icon, and what is the rationale?

    Hans L
      My Computer


  4. Posts : 43,242
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #4

    Unfortunately there's no guarantee the way Windows stores data in the registry is immediately accessible to humans, of course..

    Now, a remaining question is, who decides which 13 icons of the total of 28 that should appear when you click the ^ icon, and what is the rationale?
    You have control as per my screenshot previously. If there's a mismatch between potentially available ones in Settings and those you see in the tray, that's another matter- bad programming perhaps?

    Also note you can drag 'n drop icons from the tray notification area into the ^ popup icon box and v. versa.

    This may be of interest in passing (not covered by a tutorial here I can find):
    Clear System Tray Cache In Windows, Fix Corrupted Tray Icons
      My Computers


  5. Posts : 117
    Microsoft Windows 10 Home 64-bit 19045 Multiprocessor Free
    Thread Starter
       #5

    dalchina said:
    This may be of interest in passing (not covered by a tutorial here I can find):
    Clear System Tray Cache In Windows, Fix Corrupted Tray Icons
    I ran the .bat file, and now, I have the same number of icons in the box that opens when I click ^ icon and in [Notification area] Select which icons appear on the taskbar.

    Thank you very much!

    Hans L
      My Computer


  6. Posts : 56,850
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #6

    Just FYI..... this is the tutorial here on Tenforums that resets the notification area icon cache.

    Reset Notification Area Icons in Windows 10 | Tutorials

    Contents of the batch file:

    Code:
    :: Created by: Shawn Brink
    :: https://www.tenforums.com
    :: Tutorial: https://www.tenforums.com/tutorials/5662-notification-area-icons-reset-windows-10-a.html
    
    
    @echo off
    
    set regPath=HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify
    set regKey1=IconStreams
    set regKey2=PastIconsStream
    
    
    echo.
    echo The Explorer process must be temporarily killed before deleting your notification area icons cache. 
    echo.
    echo Please SAVE ALL OPEN WORK before continuing.
    echo.
    pause
    
    
    echo.
    taskkill /IM explorer.exe /F
    echo.
    FOR /F "tokens=*" %%a in ('Reg Query "%regpath%" /v %regkey1% ^| find /i "%regkey1%"') do goto IconStreams
    echo Registry key "IconStreams" already deleted.
    echo.
    
    :verify-PastIconsStream
    FOR /F "tokens=*" %%a in ('Reg Query "%regpath%" /v %regkey2% ^| find /i "%regkey2%"') do goto PastIconsStream
    echo Registry key "PastIconsStream" already deleted.
    echo.
    goto restart
    
    :IconStreams
    reg delete "%regpath%" /f /v "%regkey1%"
    goto verify-PastIconsStream
    
    :PastIconsStream
    reg delete "%regpath%" /f /v "%regkey2%"
    
    
    :restart
    echo.
    echo.
    echo You will need to restart the PC to finish resetting your notification area icons.
    echo.
    CHOICE /C:YN /M "Do you want to restart the PC now?"
    IF ERRORLEVEL 2 goto no
    IF ERRORLEVEL 1 goto yes
    
    
    :no
    echo.
    echo.
    echo Restarting explorer.... 
    echo.
    echo Please remember to restart the PC later to finish resetting your notification area icons.
    echo.
    start explorer.exe
    pause
    exit /B
    
    :yes
    shutdown /r /f /t 00
      My Computers


  7. Posts : 117
    Microsoft Windows 10 Home 64-bit 19045 Multiprocessor Free
    Thread Starter
       #7

    Tomcat, thanks. I did run the .bat file, but you probably did not seem my post before you posted.

    Everything now works as expected.

    Regards,

    Hans L
      My Computer


  8. Posts : 43,242
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #8

      My Computers


  9. Posts : 56,850
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #9

    Hans L said:
    Tomcat, thanks. I did run the .bat file, but you probably did not seem my post before you posted.

    Everything now works as expected.

    Regards,

    Hans L
    Yes, I did see it. It was mentioned it was not found here on Tenforums, so I only supplied the link for it. Glad it all worked for you.
      My Computers


  10. Posts : 117
    Microsoft Windows 10 Home 64-bit 19045 Multiprocessor Free
    Thread Starter
       #10

    Aha, Tomcat, understood.

    Thanks again,

    Hans L
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 22:15.
Find Us




Windows 10 Forums