0X000007E3

Fix ERROR_DELETING_ICM_XFORM (0x000007E3) in Windows

Windows Errors Intermediate 👁 5 views 📅 Jul 2, 2026

This error happens when Windows can't clean up a color transform file. Usually it's a printer or graphics driver issue. Here's how to fix it fast.

That error is annoying. You're trying to print something or maybe just open a photo, and Windows pops up with 'There was an error while deleting the color transform.' The exact code is 0x000007E3. Let's get rid of it.

The quick fix: Delete the color profile cache

  1. Press Windows Key + R to open the Run box.
  2. Type %WINDIR%\system32\spool\drivers\color and hit Enter.
  3. You'll see a folder with a bunch of .icm and .icc files. Select all of them (Ctrl + A).
  4. Press Delete key. Windows will ask for permission — click Yes.
  5. After that, close the folder and restart your computer.

When Windows boots back up, it rebuilds those color profiles from scratch. The error should be gone. Test it by printing or opening an image.

If you still get the error

Sometimes one or two files won't delete because they're in use. Here's the workaround:

  1. Open Task Manager (Ctrl + Shift + Esc).
  2. Look for any process named ctfmon.exe or explorer.exe. Right-click and select End Task. Don't worry — Windows restarts these automatically.
  3. Now go back to the color folder and delete everything.

Why this happens

Windows uses color profiles (ICM files) to match colors between your monitor, printer, and scanner. When a program like Photoshop or a printer driver tries to clean up these files after printing, something gets stuck. Maybe the file is locked by a process that crashed. Or the profile itself is corrupt. Deleting the whole cache forces Windows to start fresh.

I've seen this most often after uninstalling a printer. The old driver leaves behind its color transform, and then Windows can't delete it — boom, error 0x000007E3.

Less common variations of the same issue

Corrupt printer driver

Sometimes it's not just the color cache. The printer driver itself is bad. Try this:

  1. Open Settings > Bluetooth & devices > Printers & scanners.
  2. Click on your printer and select Remove device.
  3. Reboot the computer.
  4. Go to the printer manufacturer's website and download the latest driver for your exact model and Windows version.
  5. Install it fresh.

Graphics driver conflict

On laptops with both Intel and NVIDIA/AMD graphics, the color management can clash. Here's the fix:

  1. Press Windows Key + X and select Device Manager.
  2. Expand Display adapters.
  3. Right-click each graphics adapter and select Disable device. Do both if you have two.
  4. Reboot. Windows will re-enable them on startup.
  5. Check if the error still happens.

System file corruption

If nothing else works, run a system file check:

  1. Open Command Prompt as administrator (right-click Start > Command Prompt (Admin)).
  2. Type sfc /scannow and press Enter. Let it finish — takes about 15 minutes.
  3. Then type DISM /Online /Cleanup-Image /RestoreHealth and press Enter.
  4. Reboot after both complete.

Prevention

This error usually comes back if you keep installing buggy printer drivers. Stick to drivers from the manufacturer's site — not Windows Update. And when you uninstall a printer, always reboot after removal. That way Windows cleans up the leftover color files properly.

Another trick: keep the color folder clean. Every few months, open %WINDIR%\system32\spool\drivers\color and delete anything older than a year. Old profiles pile up and cause trouble.

If you're a designer working with custom color profiles, make a backup of your working .icm files before deleting the cache. You can restore them later if something breaks.

Was this solution helpful?