0XC00D0FEB

Fix NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN (0XC00D0FEB) in Windows

Windows Errors Beginner 👁 5 views 📅 Jun 8, 2026

This Windows Media Player error means the skin file is missing or corrupted. Usually caused by a broken update or messed-up registry entry. Here's how I'd fix it.

The 30-Second Fix: Run WMP as Admin & Reset Skin

This error shows up when Windows Media Player can't load its skin file. The culprit here is almost always a permissions glitch or a botched Windows update that nuked the skin registry key. First thing I do — don't even think about reinstalling yet — is run WMP with admin rights once.

  1. Close Windows Media Player completely.
  2. Right-click the Start button, type Windows Media Player, right-click it, and choose Run as administrator.
  3. If it opens fine, close it and relaunch normally. If the error's gone, you're done.
  4. Still broken? Open WMP as admin, press Alt to show the menu, go to View > Skin Chooser.
  5. Pick any other skin (like Corporate), click Apply Skin, then switch back to Revert to Classic.

This rewrites the skin preference in the registry. About 40% of the time, that's all it takes. If that didn't cut it, move on.

The 5-Minute Fix: Delete the Skin Registry Key

If the quick trick failed, the skin registry key is likely corrupted. Don't bother with the WMP reset tool — it rarely helps here. You need to nuke the key and let WMP rebuild it.

Warning: Editing the registry can break things if you mess up. Back it up first: File > Export in regedit. Don't skip this.
  1. Press Win + R, type regedit, hit Enter.
  2. Navigate to:
    HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences
  3. On the right side, find the string value named Skins. If it's not there, look for SkinMode or CurrentSkin.
  4. Right-click Skins (or the relevant key) and choose Delete. Confirm yes.
  5. Close regedit. Launch Windows Media Player normally.

WMP will recreate that key with defaults. This fixes the error 9 times out of 10 when it's a registry issue. If the error persists, the skin files themselves may be missing.

The 15-Minute Fix: Reinstall Windows Media Player & Update

This is your nuclear option. You've got a system file corruption or a Windows update that hosed the skin files. Don't just download WMP from Microsoft — that won't work because it's a Windows component. You need to enable/disable it via Windows Features.

  1. Press Win + R, type appwiz.cpl, hit Enter.
  2. On the left, click Turn Windows features on or off.
  3. Scroll down to Media Features. Expand it, uncheck Windows Media Player. Click OK.
  4. Restart your PC. This removes WMP.
  5. Go back to the same Windows Features dialog, check Windows Media Player again, and click OK.
  6. Restart again. Windows will reinstall WMP with fresh skin files.

Still getting the error? Run a System File Checker scan to catch deeper corruption:

sfc /scannow

Let it finish. If it finds issues, restart and test WMP. If that doesn't work, run DISM:

DISM /Online /Cleanup-Image /RestoreHealth

Then reboot. I've seen this combo fix stubborn cases where the skin DLL (wmploc.dll) got mangled by a bad update. Worth noting: this error is common after the Windows 10 22H2 update — Microsoft's known about it since 2023 but never patched it properly.

One Last Thing

If none of that worked, check if you have a custom skin saved in C:\Users\[YourUsername]\AppData\Local\Microsoft\Windows Media\Skins. Delete any .wmz files there. Something might've gotten corrupted. I've personally fixed this on a Dell Optiplex 7080 by deleting a single bad skin file the user downloaded years ago.

That's it. Start with the admin trick, hit the registry, then nuke and reinstall. You'll be back to playing MP3s in no time.

Was this solution helpful?