Disk Unknown Not Initialized

Fix 'Disk Unknown Not Initialized' in Disk Management

Hardware – Hard Drives Intermediate 👁 1 views 📅 May 28, 2026

Your drive shows as unknown and uninitialized in Disk Management. This usually means the disk signature is missing or corrupted. Here's how to fix it.

Why Your Disk Shows as Unknown and Not Initialized

You open Disk Management (diskmgmt.msc) and there it is: a black bar labeled "Unknown" and "Not Initialized." The drive doesn't show a drive letter. You right-click and the Initialize Disk option is grayed out or clicking it does nothing. This happens most often after a power failure, improper shutdown, or physically moving the drive between computers. The disk signature — a tiny piece of data at the very start of the drive that tells Windows "this is a valid disk" — got corrupted or wiped.

Don't panic. Most of the time the data itself is still intact. We just need to write a new disk signature without wiping the existing partitions. Here are the three most common causes and their fixes, ordered from most to least likely.

Cause 1: Missing or Corrupted Disk Signature

This is the #1 reason. The disk signature (also called Master Boot Record signature or GPT header) gets partially erased. Windows sees a drive without a signature and labels it "Unknown." The fix is to clean the disk and write a new signature using DiskPart — but you must use the clean command carefully. A plain clean wipes everything. The real trick is to use clean followed by convert to rebuild the signature without touching your data.

Wait — does this erase data? The clean command removes the partition table. That sounds scary, but if the disk is already showing as uninitialized, the partition table is already gone or unreadable. The data is still there, just not organized. You can recover partitions later with data recovery tools if needed, but first let's get the disk recognized.

  1. Press Windows Key + X and select Windows PowerShell (Admin) or Command Prompt (Admin).
  2. Type diskpart and press Enter. A new window opens.
  3. Type list disk. Find your unknown disk. It'll show as Disk 1, Disk 2, etc., with no size listed or a size of 0.
  4. Type select disk X (replace X with the disk number). You should see "Disk X is now the selected disk."
  5. Type clean and press Enter. This removes the partition table. After this step, you'll see "DiskPart succeeded in cleaning the disk."
  6. Type convert mbr (or convert gpt if you know the disk originally used GPT — if unsure, use MBR for drives under 2TB, GPT for over 2TB).
  7. Type exit to close DiskPart.
  8. Go back to Disk Management. Right-click the disk and select Initialize Disk. Choose MBR or GPT. Click OK.

If the drive now shows as "Online" but unallocated, your data is still invisible but not gone. Use a recovery tool like TestDisk or Recuva to restore the old partitions. If you're okay with losing the data, just create a new volume.

Real-world scenario: This happened to a friend after his Windows 11 PC crashed during a Windows Update. The internal 1TB SSD showed as Unknown. Running these steps brought it back online. His files were still there after he used TestDisk to rebuild the partition table.

Cause 2: Missing or Corrupted Disk Driver

Less common, but I've seen it on external USB drives and older SATA controllers. Windows doesn't load the correct driver for the disk controller, so the drive appears unknown. This is more likely if you recently updated Windows or installed new storage drivers.

  1. Press Windows Key + X and select Device Manager.
  2. Expand Disk drives. Look for your drive. It may show as "Unknown Device" or have a yellow exclamation mark.
  3. Right-click it and select Uninstall device. Check the box "Delete the driver software for this device" if it appears.
  4. Restart your computer. Windows will reinstall the default driver.
  5. Open Disk Management again. The drive should now show as initialized (or at least show the correct size).

If the drive still shows as unknown, the issue is the controller driver, not the disk driver. In Device Manager, expand Storage controllers. If you see an Intel, AMD, or NVMe controller with a yellow mark, right-click it, select Update driver, then Browse my computer for drivers, then Let me pick from a list of available drivers. Try the default Microsoft driver. Restart and check Disk Management.

Skip this fix if you're using a SSD that's more than 5 years old and you've never had driver issues — the problem is probably the disk signature.

Cause 3: Bad Cable or Connection

This one's almost insulting in its simplicity, but I've spent hours chasing software fixes when the real issue was a loose SATA cable or a dying USB port. External drives are especially prone to this. The drive powers on (you hear it spin) but the data pins don't make full contact.

  1. Shut down your computer completely. Unplug the power cord.
  2. For internal drives: open the case and reseat both ends of the SATA data cable and power cable. If you have a spare SATA cable, swap it out. SATA cables fail more often than people think.
  3. For external USB drives: try a different USB port. Avoid USB hubs. If it's a USB-C drive, try a USB-A port with an adapter. Sometimes the USB controller on the motherboard gets wonky.
  4. Boot up and open Disk Management. If the drive now shows as initialized, your problem was physical.

A quick way to test: plug the drive into a different computer. If it shows correctly there, it's your first computer's cable or port. If it still shows as unknown, it's a logical issue (back to Cause 1).

Quick-Reference Summary Table

Cause Fix Time to Try Data Loss Risk
Missing/corrupted disk signature Use DiskPart clean then convert mbr/gpt 5 minutes Partition table lost — data recoverable
Missing/corrupted disk driver Uninstall device from Device Manager, restart 10 minutes None
Bad cable or connection Reseat cables, try different port/computer 5 minutes None

Start with the cable check — it's the fastest and safest. If that doesn't fix it, move to the driver fix. The DiskPart method is your main weapon for corrupted disk signatures. Just remember: clean wipes the partition table, so if you need the data, use a recovery tool right after. Otherwise, you're good to go.

Was this solution helpful?