takeahike Got your context menu fix. I found out that the reason for a blank icon is because the file path to display the correct icon is not correct.
Apply registry fix to display the correct icons for, “Open with PicView” and for, “Browse folder with PicView”.
Restart Explorer.exe or restart Windows and boom… fixed!
EDIT: I’m an idiot. I should have just posted the .reg files as code. Way easier than sharing links to the files I made. The code below incorporates BOTH fixes into just one simple registry fix. No need to download anything. But if you did, it’s the same fixes now split into one .reg file below.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\PicView]
@="Open with PicView"
"Icon"="C:\\Program Files\\PicView\\PicView.exe"
[HKEY_CLASSES_ROOT\*\shell\PicView\command]
@="\"C:\\Program Files\\PicView\\PicView.exe\" \"%V\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\PicView]
@="Browse folder with PicView"
"Icon"="C:\\Program Files\\PicView\\PicView.exe"
[HKEY_CLASSES_ROOT\Directory\Background\shell\PicView\command]
@="\"C:\\Program Files\\PicView\\PicView.exe\" \"%V\""
[HKEY_CLASSES_ROOT\Directory\shell\PicView]
@="Browse folder with PicView"
"Icon"="C:\\Program Files\\PicView\\PicView.exe"
[HKEY_CLASSES_ROOT\Directory\shell\PicView\command]
@="\"C:\\Program Files\\PicView\\PicView.exe\" \"%V\""
Copy the code text above into a text file and save it as example.reg
Double click the .reg file and the missing context icons will be fixed.
Again, you need to restart explorer.exe or reboot Windows to see the fix take effect.