WMP Error 0XC00D10BA: File Not Found Fix in 3 Steps
Windows Media Player throws this when it can't find a file. Usually a broken library path or a corrupted database. Here's the real fix.
1. Corrupted Windows Media Player Library Database (Most Common)
What's actually happening here is that WMP keeps a database of all your media files — paths, metadata, thumbnails. When that database gets corrupted (common after a Windows update, a drive letter change, or moving files around), WMP still points to old locations. The error 0XC00D10BA is its way of saying "I thought this file was here, but it's not."
The fix is to delete and rebuild the database. Don't bother with the "Library" menu options — they rarely work for this specific corruption.
- Close Windows Media Player completely. Check Task Manager to make sure no
wmplayer.exeis running. - Press
Win + R, type%LOCALAPPDATA%\Microsoft\Media Player, and hit Enter. - Select everything in that folder (
Ctrl + A) and delete it. You'll see files likeCurrentDatabase_372.wmdband others — that's the database. - Restart WMP. It'll rebuild the database from scratch, scanning your monitored folders. This can take a few minutes on a large library.
The reason this works is that WMP recreates the database file fresh on next launch. Any stale paths are gone. If you had playlists, they'll still be there — those are stored separately in %USERPROFILE%\Music\Playlists.
2. The File Was Moved, Renamed, or Deleted
This one's obvious but often overlooked. WMP stores absolute paths (e.g., D:\Music\Album\Track.mp3). If you moved that file to E:\Music, renamed the folder, or deleted it, WMP has no way to know. The error code is literal: the file isn't where it expects it to be.
Here's the quick way to find out which file is missing:
- Open WMP and go to the Library view.
- Right-click the error message entry (it might show a broken thumbnail or just the file name).
- Select Properties — look at the Location field. That path is exactly what WMP wants.
- If the file exists elsewhere, you have two options:
- Move it back to the original path. Simplest, but stupid if you've reorganized.
- Delete the broken entry from the library, then add the new location. Right-click the file in WMP, choose Delete > Remove from library only (not from disk). Then drag-and-drop the real file back into WMP.
If you have hundreds of broken files (say you moved a whole music folder), skip the manual approach. Instead, add the new folder to WMP's monitored locations: Organize > Manage libraries > Music > Add. Then delete the old folder from the library. WMP will re-scan and fix all paths in one go.
Pro tip: If you regularly move files, stop. Use symbolic links or mount points instead. WMP can't track file moves — it's not a media manager like iTunes.
3. File Permissions or Antivirus Locking
This is rarer but happens. If a file exists but WMP can't read it, the error still shows as "file not found" — confusingly. The real cause is usually permissions or an overzealous antivirus.
Check file permissions first:
- Right-click the file (or the parent folder) and choose Properties.
- Go to the Security tab. Your user account should have Read & execute ticked.
- If not, click Edit, add your username, and grant those permissions.
If permissions look fine, test with antivirus temporarily disabled. On Windows Defender, I've seen it lock files that WMP tries to index — especially on first launch after a definition update. Disable real-time protection for 30 seconds, try opening the file in WMP again. If it works, add an exclusion for your media folders.
The reason this triggers the same error code is that Windows returns a generic file-not-found status when permissions or locks prevent access — the system doesn't differentiate between "file doesn't exist" and "file exists but you can't touch it."
Quick-Reference Summary Table
| Cause | Symptoms | Fix | Time |
|---|---|---|---|
| Corrupted library database | Multiple files missing, error appears after Windows update | Delete contents of %LOCALAPPDATA%\Microsoft\Media Player |
5 min |
| File moved or renamed | Single or few files missing, happens after you reorganize | Remove from library, re-add at new location | 2 min per file |
| Permissions / antivirus | File exists but WMP can't open it | Check file Security tab; add AV exclusion | 3 min |
Was this solution helpful?