0X000010D2

Fix ERROR_EMPTY (0X000010D2) – Drive or Media Pool Empty

Hardware – Hard Drives Beginner 👁 10 views 📅 May 29, 2026

Windows throws this when a library, drive, or media pool has no media. Usually a stale mount or removable drive issue—quick to fix.

Quick answer: Close any app holding the drive, disconnect and reconnect the device, then run chkdsk /f on the affected volume.

Why You’re Seeing 0X000010D2

This error pops up when Windows asks a library, drive, or media pool for its contents and gets back nothing—literally “empty.” I’ve seen this most often with external USB drives (especially older ones with media changers) or when a tape library or optical jukebox has no cartridge loaded. In Windows 10/11, it can also hit when a removable drive gets disconnected mid-operation and the file system cache hasn’t caught up.

The real trigger is a mismatch between what the OS expects and what the hardware reports. For example, a user clicks “Eject” but the drive’s firmware still shows media present; or a backup app tries to access a tape library slot that’s been emptied manually. The error code (0X000010D2) is just Windows saying “I asked, you said nothing’s there.”

Step-by-Step Fix

  1. Close everything that’s using the drive. File Explorer windows, backup software, media players—kill them. In Task Manager (Ctrl+Shift+Esc), check for any process with the drive letter in its name. I’ve seen explorer.exe itself hang onto a drive if a thumbnail preview fails. End that task if you have to.
  2. Disconnect and reconnect the hardware. For USB drives: safely remove via the tray icon, then unplug. Wait 10 seconds. Plug back into a different USB port—sometimes a port gets stuck in a bad state. For SATA/internal drives: a full power cycle (shut down, unplug PSU cable for 30 seconds) usually resets the controller.
  3. Run a disk check. Open Command Prompt as administrator and type:
    chkdsk /f X:

    Replace X: with your drive letter. This fixes file system corruption that can trick Windows into thinking the drive is empty. If the drive is in use, it’ll schedule a check on next reboot—let it run.
  4. Update or reinstall the driver. Right-click Start > Device Manager. Expand “Disk drives,” find your device (e.g., “Seagate Backup Plus USB Device”), right-click > Uninstall device. Reboot. Windows will reinstall the generic driver. For tape libraries or changers, check the manufacturer’s site for a Windows 11-compatible driver—OEM drivers often fix media detection quirks.

If the Main Fix Doesn’t Work

Try these in order:

  • Check the media pool (for tape/optical libraries). Open Computer Management > Storage > Disk Management. Look for the library volume. If it shows as “No Media” but you know there’s a tape in the drive, the changer mechanism might be stuck. Physically eject and reinsert the cartridge.
  • Use the Volume Shadow Copy service. I’ve seen ERROR_EMPTY pop up during backup jobs when VSS is corrupt. Run in an admin prompt:
    vssadmin list shadows

    If you see stale shadow copies, delete them with vssadmin delete shadows /all. Reboot and try again.
  • Check the event log. Open Event Viewer > Windows Logs > System. Filter by “Disk” or “Chkdsk.” Look for warnings about “The device is not ready” or “The media is write-protected.” Those hints can tell you if it’s a physical lock or a firmware glitch.

Prevention Tips

This error tends to recur if you’re using an external drive dock or a multi-slot media changer. A few habits help:

  • Always use “Safely Remove Hardware” before yanking a USB drive. Yes, it’s annoying, but it flushes the cache and tells the OS to release the media reference.
  • Keep your firmware updated. For tape drives or optical jukeboxes, check the vendor’s firmware page every few months. I’ve fixed a dozen “empty” errors on HP tape libraries just by updating the firmware.
  • Don’t let backup software autostart on boot. If a backup app grabs the media pool before Windows has fully initialized the drive, you’ll get this error on every reboot. Set the service to “Manual” start instead of “Automatic.”

If you’re still stuck after all this, it’s worth testing the drive on another computer. If the error follows the hardware, the drive’s controller or media changer is likely failing. At that point, replace the drive—it’s cheaper than your data.

Was this solution helpful?