0XC0000013

Fix STATUS_NO_MEDIA_IN_DEVICE (0XC0000013) No Disk Error

Hardware – Hard Drives Beginner 👁 10 views 📅 Jun 8, 2026

This error means Windows can't find a disk in a drive. It's almost always a stuck drive letter or a bad USB/SD card. We'll fix it in three steps.

The 30-Second Fix: Check the Drive Letter

This error pops up when Windows holds onto a drive letter for something you unplugged. I see it all the time with SD card readers, USB flash drives, or external hard drives that got yanked out without using "Safely Remove Hardware."

  1. Press Windows + X and select Disk Management. You'll see a list of all your drives.
  2. Look for a drive with a letter (like D: or E:) but no media. It'll say "No Media" under File System.
  3. Right-click that drive and select Change Drive Letter and Paths.
  4. Click Remove, then Yes to confirm. After you click Remove, the drive letter disappears from Disk Management.
  5. Restart your computer. After reboot, the error should be gone.

If you still see the error after restart, move to the next fix.

The 5-Minute Fix: Reseat the Physical Drive

Sometimes the drive itself is loose or the reader isn't making contact. This is common with SD cards in laptops or cheap USB hubs.

  1. Shut down your computer completely. Not sleep, not hibernate — full shutdown.
  2. If it's an external drive (USB, eSATA), unplug it from the computer.
  3. If it's an internal card reader or hard drive, open the case. For a card reader, remove the SD card and blow out the slot. For a hard drive, check that the SATA cable and power cable are clicked in tight. I've fixed dozens of these just by reseating the SATA cable.
  4. Wait 30 seconds, then plug everything back in.
  5. Power on and check if the error returns.

The 15-Minute Fix: Use Diskpart to Clean Stuck Drive Letters

If the first two fixes didn't work, the drive letter is stubborn. Diskpart is a command-line tool that can strip it clean. This fix is safe as long as you pick the right drive.

  1. Open Command Prompt as Administrator. Right-click Start and choose Command Prompt (Admin) or Windows Terminal (Admin).
  2. Type diskpart and press Enter. You'll see "DISKPART>" prompt. This tool works at a lower level than Disk Management.
  3. Type list volume and press Enter. Look for a volume with no file system or a blank Label. It's usually the one with a drive letter but no media. Note the Volume ### (like Volume 5).
  4. Type select volume X (replace X with your volume number) and press Enter. You should see "Volume X is the selected volume."
  5. Type remove letter=D (replace D with the actual drive letter showing the error) and press Enter. Diskpart will confirm it removed the drive letter.
  6. Type exit twice to close Diskpart and Command Prompt.
  7. Restart your computer. After reboot, the error should be gone.

If the error still appears after this, the drive itself might be dead. Try a different USB port or a different computer. But honestly, 90% of the time the simple drive letter removal in step one fixes it. Start there and save yourself the hassle.

Was this solution helpful?