Fix ERROR_MEDIA_UNAVAILABLE (0x10D4) in Windows Backup
That 'no media available' error means Windows can't find a tape or disk in the backup device. Here's how to get it working again.
Quick answer for pros: Open Removable Storage Manager, check the media pool for your device, and run rsm refresh /library to rescan. If that fails, delete and recreate the pool.
Why This Error Happens
I've seen this error pop up mostly on Windows Server 2008 R2 and 2012 R2 during automated backups to tape libraries or removable disk slots. The system knows a drive exists, but the media pool—the logical container that tracks which tape or disk is where—reports it as empty. This usually happens after a tape is ejected manually, a power cycle, or when the catalog file gets corrupted.
I know this error is infuriating because backup jobs just fail silently overnight, and you don't find out until morning. Let's get it fixed.
Fix 1: Refresh the Media Pool
- Open Computer Management → Removable Storage → Media Pools.
- Locate the pool for your backup device (e.g., Imported or Unrecognized).
- Right-click it and select Refresh. This forces Windows to inventory the physical media again.
- If you see the tape or disk appear, run a test backup to confirm.
In my experience, this works about 60% of the time. If the pool stays empty, move to the next fix.
Fix 2: Use the Command Line to Rescan
The GUI sometimes lies. The rsm command gives you the raw truth.
rsm refresh /library:"YourLibraryName"
rsm view /library:"YourLibraryName"
Replace YourLibraryName with your actual library name (find it in RSM). The view command shows you every slot and tape status. If a tape shows as Unknown or Not Present, reinsert it physically.
Fix 3: Delete and Recreate the Media Pool
If the pool is stuck in a ghost state, nuke it. This is safe—the physical media isn't erased.
- In RSM, right-click the problematic pool → Delete.
- Go to Physical Media → find your tape or disk (likely in Unrecognized or Imported).
- Drag it into the Free pool.
- Create a new media pool with New Media Pool, assign your backup app to use it.
- Test the backup.
Alternative Fix: Check the Device Manager
Sometimes the hardware driver gets confused. I've seen this on HP Ultrium tape drives and Dell PowerVault libraries.
- Open Device Manager.
- Expand Medium Changers and Tape Drives.
- Uninstall the device (not the driver). Reboot.
- Windows will reinstall it. Then run
rsm refreshagain.
Prevention Tip
To avoid waking up to this error, always eject media through the backup software, not the physical button on the drive. Also schedule a weekly rsm refresh via Task Scheduler to keep the catalog fresh. I set this up for clients and the error rate dropped to near zero.
Was this solution helpful?