You plug in your external drive, Windows says "You need to format it before you can use it." Or it shows up as RAW in Disk Management. Don't panic, don't click Format. I've seen this a thousand times. The drive isn't dead. In most cases, the file system metadata is corrupt or missing, and you can fix it without losing a single file.
Here's the thing: RAW just means Windows doesn't recognize the file system. It could be NTFS, exFAT, or FAT32 that's damaged. The actual data is usually still there. You just need to repair the partition structure.
Cause #1: Corrupted Boot Sector or Partition Table
This is the most common culprit. The boot sector is the first sector that tells Windows how to read the drive. If it gets damaged—from an unsafe ejection, a power surge, or just old age—Windows sees RAW. The fix? Rebuild it with TestDisk. It's free, open source, and I've used it on hundreds of drives.
Step-by-step:
- Download TestDisk from
cgsecurity.org. Run it as Administrator. - Select your external drive from the list. Arrow keys navigate, Enter selects.
- Choose
Intelfor the partition table type (even for GPT, it'll handle it). - Select
Analyse, thenQuick Search. Let it scan. - If it finds your partition, press Enter to continue. Then select
Writeto save the recovered partition table. - Reboot and check if the drive is accessible.
This works about 70% of the time. If Quick Search doesn't find it, run Deeper Search—slower but finds more.
I've seen TestDisk save drives that Disk Management couldn't even see. It's the first tool I reach for, and you should too.
Cause #2: Missing or Damaged File System (FS) Metadata
Sometimes the boot sector is fine, but the file system itself is corrupt—think NTFS master file table (MFT) or FAT tables. This happens from improper shutdowns or malware. The drive still shows RAW because Windows can't read the metadata.
For NTFS drives, chkdsk can sometimes fix it, but it's risky on a RAW drive. If it does run, it might recover the filesystem. But I've also seen chkdsk make things worse. So here's the safer route:
- Use DMDE (dmde.com). The free version can rebuild the file system structure. It's less known but very effective.
- Open DMDE, select the drive, run a full scan. It'll show found partitions.
- If it finds your NTFS partition, right-click and select
Open Volume. You can see your files. Then go toTools → Rebuild File Systemand follow the prompts.
Alternatively, you can use Recovery Explorer (recoveryexplorer.com) — paid but has a trial. It does a similar job. I've used both, and they're solid. They reconstruct the file system and let you copy your data off before you format.
Important: Don't write anything to the RAW drive if you can avoid it. Every write overwrites potential recovery data.
Cause #3: Bad Sectors or Physical Damage
Now the bad news. If the drive is clicking, making unusual sounds, or keeps dropping offline, you might have physical damage. A RAW status from bad sectors is different from logical corruption. The drive might be failing.
First, check the SMART data. Use CrystalDiskInfo (free). Look for Reallocated Sectors, Current Pending Errors, or Uncorrectable Sectors. If any are non-zero, the drive is physically degrading.
In that case, don't run TestDisk or chkdsk. They'll stress the drive and could kill it. Instead:
- Use ddrescue (Linux) or HDDSuperClone (free, runs from a live USB) to clone the drive to a healthy one. This reads sector-by-sector and retries failed ones, saving as much as possible.
- Once you have a clone, run TestDisk or DMDE on the clone. Never on the original.
- If the data is critical, consider a professional data recovery service. It's expensive, but they have clean rooms and specialized tools.
I've lost drives to ignoring SMART warnings. Don't be me. If the drive is clicking, turn it off and clone it immediately.
Quick-Reference Summary
| Cause | Symptom | Fix |
|---|---|---|
| Corrupt boot sector | Drive shows RAW, no damage sounds | TestDisk – rebuild partition table |
| Damaged FS metadata | RAW, but no physical issues | DMDE or Recovery Explorer – rebuild file system |
| Bad sectors / physical | Clicking, slow, SMART errors | ddrescue clone, then recover from clone |
Remember: the golden rule is to stop using the drive the moment you see RAW. Unplug it, work on a copy or with read-only tools. That gives you the best shot at getting your files back without formatting.
I've fixed dozens of RAW drives this way. Most people just need the TestDisk route. But if that doesn't work, don't give up—DMDE has saved my ass more than once.