Fix NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE (0XC00D11C9)
Windows Media Player can't burn because it sees your disc or drive as the wrong type. The fix is checking your disc format and switching to a compatible burner or media.
Quick answer for pros
Open Device Manager, find your DVD/CD-ROM drive under DVD/CD-ROM drives, right-click it, select Properties, go to the DVD Region tab, set region to your location (or None if available), reboot, then try burning again. If that doesn't stick, update or reinstall the drive's driver.
Why this error happens
This error trips up a lot of people, including me the first time I hit it on a Windows 7 machine back in 2012. The WMP error 0XC00D11C9 means Windows Media Player's burning engine (IMAPI) sees your optical drive as an invalid device type. It's not that your drive is broken — it's that WMP thinks it's a non-recordable device or a device that doesn't support the disc format you're trying to use. Common triggers: you're trying to burn a DVD+RW on a drive that only reads CD-Rs, or you're using a Blu-ray disc on a DVD burner, or the drive's region setting is misconfigured. Some users also see it after a Windows update that resets their IMAPI settings.
Step-by-step fix
- Check your disc format and drive. Look at the disc you're inserting — is it a CD-R, CD-RW, DVD-R, DVD+R, DVD-RW, or Blu-ray? Then check your drive's recorded speeds and formats. You can often see this by reading the front of the drive tray or searching the model number online. If the disc type isn't supported by your drive, that's your problem. Get the right disc.
- Run the built-in Windows troubleshooter — it's dumb but sometimes catches things. Go to Settings > Update & Security > Troubleshoot > Additional troubleshooters > Hardware and Devices. Run it. It may reinstall your drive's driver or reset a flag.
- Update or reinstall your optical drive's driver. Open Device Manager (Win+X, then M). Expand DVD/CD-ROM drives. Right-click your drive, select Update driver > Search automatically. If no update found, right-click again, Uninstall device, then reboot. Windows will reinstall the driver fresh. I've seen this fix the error on two different Dell laptops running Windows 10 22H2.
- Check IMAPI service. Press Win+R, type
services.msc, hit Enter. Find IMAPI CD-Burning COM Service. Double-click it. Make sure Startup type is Manual and the service status is Running. If not, click Start, then OK. This service is WMP's burning buddy — if it's off, nothing burns. - Set the DVD region. Back in Device Manager, right-click your DVD/CD-ROM drive, Properties, DVD Region tab. If it shows a region selected (like Region 1), change it to your actual region. If it shows "No region set" or a different region, set it correctly. Some drives require a region to be set before IMAPI will recognize them as recordable. After setting, reboot.
- Use a different burning app to test the drive. Install something like CDBurnerXP or ImgBurn (both free). Try burning the same files with that. If it works, the problem is WMP-specific, and you can either keep using the other app or reset WMP's settings. If it also fails, your drive may be dying — but that's rare.
Alternative fixes if the main ones fail
- Reset WMP library. Close WMP. Press Win+R, type
%userprofile%\AppData\Local\Microsoft\Media Player, hit Enter. Delete everything inside that folder (you'll lose playlists and ratings — back them up first). Reopen WMP, let it rebuild the library. Then try burning. - Check for third-party burning software conflicts. If you have Nero, Roxio, or something similar installed, uninstall it temporarily. Those can hook into IMAPI and confuse WMP. Reboot and test.
- Run SFC and DISM. Open Command Prompt as admin. Run
sfc /scannow. After that finishes, runDISM /Online /Cleanup-Image /RestoreHealth. This fixes corrupted Windows files that could be breaking IMAPI.
Prevention tip
Before you try to burn, always check that your disc format matches your drive's capabilities. Keep your optical drive's firmware updated (check the manufacturer's site for a firmware tool). And if you burn regularly, consider using a dedicated burning app instead of WMP — it's more reliable and gives you better error messages. WMP's burning feature is a convenience, not a professional tool.
Was this solution helpful?