Fix NS_E_WMP_INVALID_REQUEST (0XC00D11D4) in Windows Media Player
This error pops up when Windows Media Player can't play a file because another app or background process has locked it. Quick fix: close all programs using that file, then restart WMP.
Quick answer for pros
Close any app that's currently using the media file (like a video editor or another media player), then restart Windows Media Player. If that doesn't work, reboot your PC—it frees file locks 99% of the time.
Why this error happens
I first ran into the 0XC00D11D4 error back in Windows 7, and it's still a pain on Windows 11. The root cause is almost always a file lock. Windows Media Player tries to open a media file, but something else already has a handle on it—maybe a video editor like Clipchamp, a second instance of WMP, or even a background sync tool like OneDrive. The error message says "cannot perform the requested action at this time" because the file isn't available for exclusive access.
Another common trigger: you're trying to burn a CD or sync a playlist, and WMP's internal state machine gets confused. That's rarer, but fixable.
Fix steps (in order)
- Close all programs that might be using the file. Check your system tray for running media apps—VLC, iTunes, video editors, even a browser tab playing the same video. Right-click and exit them.
- Open Task Manager (Ctrl+Shift+Esc) and look for any Windows Media Player process under the Processes tab. End it if you see it. Sometimes a ghost instance hangs around.
- Restart Windows Media Player. Launch it fresh from the Start menu. Try playing the file again.
- If that fails, reboot your PC. I know it sounds cliché, but a full restart clears all file handles. Don't just log off—reboot.
- Still stuck? Check if the file is corrupted. Try playing a different file in WMP. If that works fine, the original file may be damaged. Use a tool like
ffmpeg -i problemfile.mp4 -c copy fixedfile.mp4to rewrap it without re-encoding.
Alternative fixes when main steps don't work
If the file plays in VLC but not WMP, the issue is a codec or DRM problem—not a file lock. Install the K-Lite Codec Pack (standard version) to give WMP more codecs. Also, check your audio device: sometimes WMP hangs waiting for exclusive audio output. Go to Tools > Options > Devices, select Speakers, and set it to "Use default audio device."
On rare occasions, the Windows Media Player library database gets corrupted. Close WMP, then delete the database files. Press Win+R, type %LOCALAPPDATA%\Microsoft\Media Player, and delete everything inside that folder. WMP will rebuild it on next launch.
Prevention tip
Always close media files in other apps before opening them in WMP. If you're a video editor, export your project to a new file first—don't try to play the raw project file in WMP. Also, keep Windows and WMP updated. The December 2023 cumulative update for Windows 11 fixed a similar lock issue with memory-mapped files.
Truth is, this error is rarely a sign of deeper trouble. It's just WMP being a bit too polite about sharing files. A quick reboot handles it nearly every time.
Was this solution helpful?