How to Fix Corrupted Icons and Shortcuts in Windows 10

Corrupted icons on Windows – blank squares, generic white pages, wrong icons for apps – usually come from a corrupt icon cache. here’s how to fix it without a full reinstall.

Method 1: Rebuild the icon cache

The icon cache is a database file Windows uses to display icons quickly. When corrupted, icons display wrong or blank.

  1. Open Task Manager > find Windows Explorer > right-click > End Task. Taskbar disappears temporarily.
  2. In Task Manager > File > Run new task > type cmd > check “Create this task with administrative privileges” > OK
  3. Run these commands:
    cd /d %userprofile%\AppData\Local\Microsoft\Windows\Explorer
    attrib -h iconcache_.db
    del iconcache_
    .db
  4. Task Manager > File > Run new task > type explorer.exe > OK
  5. Restart your PC

Method 2: Clear via Disk Cleanup

Start > Disk Cleanup > run as administrator > check Thumbnails > OK. Clears the thumbnail cache which also causes icon display issues.

Method 3: SFC scan

Open Command Prompt as administrator and run: sfc /scannow

Scans and repairs corrupted Windows system files. Takes 10-20 minutes. Restart after.

Broken shortcuts

If shortcuts are broken rather than displaying wrong icons, right-click > Properties > check the Target field. If it points to a location that no longer exists, update the path.

Persistent issues

Create a new Windows user account and log in. If icons display correctly in the new profile, the issue is with your user profile rather than the system.

The SFC scan has salvaged a surprisingly large number of seemingly unrelated problems beyond just icons. It’s worth running any time Windows is behaving strangely without an obvious cause. I tend to run it early in troubleshooting rather than as a last resort.

The new user account test is clever. Profile corruption is a distinct failure mode that’s easy to confuse with system-wide issues, and testing in a fresh profile separates them cleanly. If the fresh profile is fine, you know exactly where the problem lives.

Disk Cleanup clearing thumbnails works for a lot of visual weirdness beyond icons – blurry thumbnails, photos showing wrong previews. worth running it first since it’s zero risk and takes about a minute.

The end task on Explorer then restart it via Task Manager approach is something more people should know. It’s useful beyond just icon cache – lets you run commands in a cleaner state without restarting the full machine.

Broken shortcuts after program reinstalls is a specific headache for less experienced users. They reinstall a program to a slightly different path and all their shortcuts break silently. Knowing to check the Target field rather than assuming the whole app is broken saves a lot of confusion.