0XC0000014

STATUS_UNRECOGNIZED_MEDIA (0XC0000014) – Disk Format Fix

Hardware – Hard Drives Intermediate 👁 0 views 📅 May 27, 2026

The disk isn't formatted properly or the partition table is corrupt. Quick fix: run chkdsk, then use diskpart to clean and reformat.

Quick Answer (for the experienced)

Run chkdsk /f X: (replace X with the drive letter). If that fails, use diskpartcleancreate partition primaryformat fs=ntfs quick. This nukes the partition table and rebuilds it.

What's Actually Happening Here?

I've seen this error pop up on old external drives, USB sticks that got yanked out mid-write, and even on internal drives after a bad crash. The error code 0XC0000014 literally means Windows looked at the media and said, "I don't recognize this format." Usually it's because the partition table got corrupted—maybe a boot sector went bad, or the GPT header got scrambled. Last month, a client brought in a Seagate 2TB external that showed this after their kid unplugged it during a file copy. The disk still spun up, but Windows couldn't read a damn thing.

The key is to figure out if the data is still recoverable before you do anything that wipes it. If the drive makes weird clicking noises, stop—that's hardware failure. But if it just shows this error and the disk is quiet, you've got a good shot at fixing it without losing everything.

Fix Steps (Start Here)

  1. Run CHKDSK first
    Open Command Prompt as admin. Type chkdsk /f X: (where X is the drive letter showing the error). This scans for file system errors and tries to fix them. It won't touch your data. If it reports "recovered" anything, reboot and check if the drive works.
  2. Use DISKPART to inspect the disk
    If CHKDSK fails or doesn't help, run diskpart. Then list disk to see all drives. Find your problem disk by size. Type select disk X (X is the disk number, not the volume letter). Then detail disk — look for "Partition style: MBR" or "GPT". If it says "RAW" or shows nothing, the partition table is toast.
  3. Clean and reformat (data loss here)
    Only do this if you don't need the data or you've already backed it up some other way. Inside diskpart, after selecting the disk, type clean. Then create partition primary. Then format fs=ntfs quick. Assign a letter with assign and exit. The drive should now work.
  4. If data matters: try recovery first
    Before cleaning, use a tool like TestDisk (free, open source) or Recuva to try to recover the file system. TestDisk can rebuild a damaged MBR or GPT. I've used it to recover entire partitions. It's command-line only but the docs are solid.

Alternative Fixes (If the Main One Fails)

  • Try a different USB port or cable — I've seen bad cables cause this error. Sounds dumb, but it's a five-second test.
  • Check in Disk Management — Press Win+X, select Disk Management. If the drive shows as "RAW" or "Unallocated", right-click and format. If it shows "No Media", the drive itself is dead.
  • Boot from a Linux live USB — Ubuntu can sometimes read disks Windows refuses to. Boot from a live USB, run sudo fdisk -l to list drives, then try mounting it. If it mounts, copy your data off.

Prevention Tip

Always safely eject external drives—don't just yank them. For internal drives, run chkdsk /f monthly if you've had crashes. And keep a backup. Seriously, external drives fail at the worst times. I've seen this error 20 times in the last year; half of those people had no backup. Don't be that person.

Was this solution helpful?