0XC00D10AD

WMP 0XC00D10AD: Playlist repeat block start media missing fix

Windows Errors Intermediate 👁 1 views 📅 May 29, 2026

Windows Media Player can't find the start of a playlist repeat section. Usually a corrupted playlist or sync mis-match. Here's how to kill it fast.

You're trying to play a playlist in Windows Media Player and hit that 0XC00D10AD error. Annoying as hell when you just want to hear some tunes. I've had this pop up on client machines running Win10 22H2, and once on a Windows 7 box that was otherwise fine. The fix is stupid simple once you know where to look.

The quick fix: delete the corrupted playlist

  1. Close Windows Media Player completely. Check Task Manager — sometimes it runs in the background. Kill it if it's there.
  2. Navigate to the playlist folder. Press Win+R, type %USERPROFILE%\Music\Playlists, hit Enter.
  3. Sort by date modified — look for the playlist you were trying to open. It'll probably have a .wpl extension.
  4. Delete that file. Right-click, Delete. Yes, it's gone. You'll rebuild it in a sec.
  5. Open WMP again and recreate the playlist. Add your songs fresh. Don't try to import the old one — it's toast.

That's it. Nine times out of ten, this kills the error. The playlist file got corrupted — maybe from a failed sync, a partial write when the power flickered, or a bad metadata tag in one of the songs.

Why this works

Here's the technical bit without the fluff. WMP uses a playlist format that supports repeat blocks — chunks of songs that loop. The error code translates to "media object corresponding to start of a playlist repeat block was not found." That means the playlist file has a marker saying "start repeating here," but the actual media entry at that point is missing or points to a file that doesn't exist anymore.

Common triggers I've seen:

  • You deleted or moved a song that was the first track in a repeat block.
  • You edited the playlist in a third-party tool (like MP3Tag or Playlist Editor) that messed up the XML structure.
  • Network drive or USB drive got disconnected while WMP was writing the playlist.

Deleting the file removes the corrupted XML. WMP rebuilds from scratch next time you save the playlist. No fuss.

Less common variations

1. The playlist is in the library but not in the Music folder

Sometimes WMP stores playlists in the %LOCALAPPDATA%\Microsoft\Media Player\Playlists folder. Check there if you don't see it in Music. Had a client last month whose entire print queue died because of this — wait, no, that was a different issue. Point is, check both locations.

2. The error happens on a shared or network playlist

If the playlist is on a NAS or shared folder, the file itself might be fine, but the path to the media files is broken. For example, the playlist references \\OldServer\Music\song.mp3 but your server got renamed. The fix here is to either fix the path in a text editor (open the .wpl in Notepad, find/replace the path) or just recreate the playlist pointing to the correct location.

3. The playlist was created by another user on the same PC

WMP playlists are per-user. If you're logged into a different account, you won't see that user's playlists. But if someone copied a .wpl file into your Playlists folder manually, the file might reference their user profile paths. Recreate it under your own account.

4. The error appears on startup with no playlist open

This means WMP is trying to load a default or last-used playlist that's borked. Force a library reset:

1. Close WMP.
2. Open Command Prompt as admin.
3. Run: "%ProgramFiles(x86)%\Windows Media Player\wmplayer.exe" /ResetLibrary
4. Wait 10 seconds, open WMP again.

This wipes your entire media library — playlists, ratings, everything. Only do this if you're sure the error is library-wide.

Prevention: Don't let this happen again

You can't completely bulletproof against corrupted playlists, but you can lower the odds:

  • Don't edit .wpl files manually unless you know XML. One missing closing tag and you're in error city.
  • Back up your playlists regularly. Copy the Playlists folder to a thumb drive or cloud folder. They're small files.
  • Avoid third-party playlist managers that don't handle WMP's repeat block syntax. I've seen MediaMonkey and iTunes export mangled playlists.
  • If you move music files, update the playlist paths. Use a tool like Playlist Sync (free) or manually fix paths.

And if you're still hitting this error after deleting the playlist? Check your hard drive for errors. A failing drive can corrupt files during write. Run chkdsk /f on the drive where the playlists live. Last time I saw that, the guy's drive had 37 bad sectors. New drive, no more errors.

One last thing — if you're tempted to reinstall WMP, don't bother. It's a Windows component. You can remove and re-add it via Windows Features, but it won't fix a corrupted playlist file. Kill the file, rebuild, and move on.

Was this solution helpful?