Fix ERROR_MEDIA_INCOMPATIBLE (0x000010DB) – Media Not Compatible
This error means Windows can't use the media you inserted—tape, optical disc, or removable drive—because it's wrong type, unformatted, or corrupted.
Quick answer
Run wbadmin get status to check media pool membership, or open Disk Management and verify the media is formatted and the right type for your device.
What this error means
I know this error is infuriating—you insert a tape, pop in a DVD, or plug in a USB drive, and Windows throws up this 0x000010DB wall. It's saying: I can't work with this. It's not what I expected. Usually, this crops up with tape drives when you're using Windows Backup, or with removable media like Blu-ray discs and external hard drives. The trigger is straightforward: the physical media doesn't match what the device or the media pool (Windows' internal grouping of backup media) thinks it should be. For example, you might have an LTO-5 tape in an LTO-6 drive—physically fits, but electrically incompatible. Or you've got a DVD-RW in a drive expecting DVD+RW. Or a hard drive that's formatted as exFAT when the backup tool wants NTFS. The fix depends on where you see the error.
Fix steps
- Identify the device and media type. Right-click the Start button and select Device Manager. Expand Tape drives or DVD/CD-ROM drives. Note the exact model. Google its specs—what media does it support? LTO generations only work forward (LTO-6 reads LTO-5, but not vice versa). DWDM? Check your optical disc's format.
- Check media pool membership. That's the most common cause with tape backups. Open Command Prompt as admin and type:
wbadmin get status
If it shows a media pool mismatch, you need to either add the media to the right pool or create a new one. Use:wbadmin delete catalog -backupTarget:
to reset it (careful—this wipes backup history). - Verify formatting. For optical discs or USB drives, open Disk Management (diskmgmt.msc). Right-click the volume and check the file system. Windows Backup needs NTFS. If it's FAT32 or exFAT, you'll get this error. Back up any data and reformat to NTFS.
- Clean the media. I've seen dusty tapes or smudged discs trigger this. Use a lint-free cloth for optical discs. For tapes, a cleaning cartridge can work wonders—run it once through the drive.
- Update firmware. Tape drives and optical drives sometimes need firmware updates to support newer media. Check the manufacturer's site. For example, an old Sony tape drive might not recognize a newer LTO-7 cartridge without a firmware bump.
Alternative fixes if the main ones fail
- Try a different media type. If you're using WORM (Write Once Read Many) media in a standard drive, switch to rewritable. Some backup software chokes on WORM unless explicitly configured.
- Disable media pool protection. In Windows Backup, go to Backup and Restore (Windows 7), select Manage space, then View backups. Remove any old backups that might be locking a specific media pool. Then reinsert your media.
- Use a third-party tool. Windows' native backup is finicky. I've had better luck with tools like Macrium Reflect or Veeam Agent for tape drives. They bypass the media pool nonsense entirely. Just make sure the tool supports your drive model.
Prevention tip
Always label your media with the device type and format. That tape from a backup two years ago? Could be from a different LTO generation. Write the specifics on the label. Also, keep firmware up to date on both drives and controllers. I check HP and IBM sites quarterly for my tape library—beats chasing errors at 2 AM.
Was this solution helpful?