The unity icon on the taskbar is blank and looks like a txt file logo without the black lines.
![]()
Please help me, I’ve had this issue for days and I know it doesn’t change anything but it looks irritating.
The unity icon on the taskbar is blank and looks like a txt file logo without the black lines.
![]()
Please help me, I’ve had this issue for days and I know it doesn’t change anything but it looks irritating.
If anyone else comes across this in the future, I was able to fix this exact issue by deleting iconcache.db located in %appdata%/Local and restarting the Windows Explorer
try to remove it from taskbar and repin it…or maybe just reinstall unity hub
I was having a similar problem with Unity Hub and Unity Editor Instance icons missing in the taskbar on windows 11 (icons looked like blank white paper sheets).
Ar3DDev’s solution above worked for me in Unity v6000.28.1f and Unity Hub v3.12.1. It’s important to fully close windows explorer before deleting the icon cache.
Claude told me to paste this into a CMD and it worked
REM Registry method to clear icon cache
REM Delete icon cache registry entries
REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /f
REG DELETE "HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\MuiCache" /f
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts" /f
REM Clear thumbnail cache registry
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /f
REM Kill and restart Explorer to apply changes
TASKKILL /f /im explorer.exe
START explorer.exe
ECHO Registry icon cache entries cleared
PAUSE.exe