Skip to main content
recuperation-fichiersINFO

Recover files from an unrecognised external hard drive in 2026

External hard drive clicking, not recognised, or asking to be formatted: methodical step-by-step procedure to recover your files without aggravating the damage. Free + commercial tools benchmarked.

By Eric Gerard · Editor · Save My Disk5 min readPhoto: Unsplash

Identify the nature of the problem (5 minutes)

Before you install any recovery software, the first diagnosis drives everything else. There are three main failure types, and each one needs an opposite strategy:

Mechanical failure (abnormal sounds)

Repeated clicking, steady scraping, or an uneven hum that stops → the drive has a physical problem: head crashing into platters, tired motor, damaged PCB controller. Unplug immediately and don't push on. Every extra attempt makes the damage worse. For valuable files (>$500), go straight to a cleanroom pro (Ontrack, DriveSavers, Secure Data Recovery). Plan $800 to $2,500 based on how bad it is. The success rate is 75-90% on mechanical failures caught early.

PCB controller or power failure

Silent drive when plugged in, LED off, no system detection → external electronics failure. Try another USB cable and another enclosure (if the drive is a removable 2.5″ or 3.5″). The USB-to-SATA enclosure is often the real culprit, not the disk itself. A new enclosure costs $12 to $30. Also check the external power (for 3.5″). A failing transformer can show the same signs as a disk failure.

Logical corruption (the most common case)

Disk detected, normal sound, but Windows offers to format OR the filesystem shows up as RAW or unrecognised → allocation table corruption (MFT for NTFS, FAT for FAT32/exFAT). This is the most common case, and the easiest to recover. The data under it is almost always intact. Only the index that points to it is broken. This is where TestDisk + EaseUS + PhotoRec come in.

Don't format, don't panic

An external hard drive on a desk
An external hard drive on a desk

The worst move when Windows shows "You need to format the disk in drive X: before you can use it" is to accept. Never accept. Formatting writes over the allocation table and makes later recovery much harder. You go from an easy case (rebuilding the table) to a hard one (full carving with no names or folder tree).

Correct sequence:

  1. Click Cancel on the pop-up
  2. Eject cleanly (right-click > Eject or Safely Remove Hardware)
  3. Plug into another PC, ideally Linux (its kernel is more forgiving on corrupted partitions)
  4. Start a recovery session with TestDisk or EaseUS

The golden rule: image the disk first

For any case where files have value, the first step is to clone the disk bit-by-bit. This lets you work on a COPY and try several methods with no risk to the source disk.

On Linux, the reference command is ddrescue (GNU dd_rescue) in two passes:

sudo ddrescue -d -f -n -b 4096 /dev/sdX /path/image.bin /path/image.log
sudo ddrescue -d -f -r 3 -b 512 /dev/sdX /path/image.bin /path/image.log

The first pass quickly reads healthy areas in 4 KB blocks and skips the hard areas right away. The second pass goes back to the hard areas in 512-byte blocks with 3 retries. The logbook (image.log) lets you resume if it stops.

To automate this cleanly, see our ddrescue-safe.sh wrapper with safety rails. It refuses to write to the source disk, asks you to confirm before the clone, and checks the integrity hash.

Free TestDisk vs paid EaseUS

For recovery from a disk image (or straight from the source in read-only mode if you didn't take the time to image), there are two tool families:

TestDisk (free, open-source CGSecurity) is still the best tool for partition table and boot sector corruptions - its strength since 2003. It uses a command-line interface, but a patient beginner can use it with some reading. For file carving (signature analysis with no table), the tool is PhotoRec, its companion. But PhotoRec loses filenames and the folder tree (all recovered files go to recup_dir.1, recup_dir.2 folders with numeric names).

EaseUS Data Recovery Wizard (Pro edition $49-69 on an annual plan, free limited to 2 GB) offers a modern GUI. It rebuilds the table AND carves in one pass, and keeps names when it can. It handles BitLocker-encrypted drives well, and shows a preview before you buy. For 90% of consumer cases, EaseUS gives an equal or better result in half the time vs the TestDisk + PhotoRec combo, above all for non-technical users.

For a Linux sysadmin at ease with the command line, TestDisk + PhotoRec cover the same cases for free, with more room to move on LUKS-encrypted disks and LVM partitions.

Destination strategy and backup

Classic mistake: recovering files to the same disk you're recovering. This can write over data you could still save. Always point the destination to a separate disk - a second external drive, a network share, or straight to the cloud.

Once recovery works, the next move is to set up a backup plan so it doesn't happen again. The go-to rule is 3-2-1:

  • 3 copies of data (original + 2 backups)
  • 2 different media (local disk + cloud, or local disk + NAS)
  • 1 offsite (encrypted cloud or disk at a relative's, safe from local fire or burglary)

Continue reading

Editorial pick
4.5 / 5

Recover your deleted files → EaseUS

Free scan · deleted, formatted & lost files · Windows & Mac

Founded in 200430-day guaranteeFree 2 GB version
See the offer

Frequently asked questions

My external hard drive clicks: what should I do immediately?

Clicking is almost always a sign of mechanical failure in progress - head crash against the platter, struggling motor, resetting PCB controller. **UNPLUG IMMEDIATELY** and don't plug it back in. Every extra second of power harms the drive and lowers your recovery chances. Lay the drive flat on a stable surface. Label it so you know what's on it. Then weigh your options. If the files have emotional or money value (>$500), go straight to a pro who handles mechanical recovery (Ontrack, DriveSavers, Secure Data Recovery). If the value is lower and you accept the risk, you can try one last reading session with `ddrescue` on Linux to clone what still comes out. But never push on after several failed tries.

Windows asks me to format my drive, should I accept?

**NO, never.** If Windows shows 'You need to format the disk in drive X: before you can use it', the MFT (NTFS) or FAT allocation table is corrupted. But the data under it is almost always still intact. Formatting writes over the table and makes recovery much harder. Here's the right way: refuse formatting, then unplug cleanly (Eject > Safely Remove Hardware). Next, connect the drive to another PC (ideally Linux) in read-only mode. Or use recovery software like EaseUS Data Recovery Wizard, R-Studio or TestDisk, which can rebuild the table without rewriting the disk. TestDisk (free, open-source CGSecurity) works very well on partition table and boot sector corruptions.

Free TestDisk vs paid EaseUS: which one?

**TestDisk** (free) is the best tool for partition table and boot sector corruptions - its long-time strength. It runs in the command line but a patient beginner can use it. It doesn't recover via carving (file signature analysis). That job goes to PhotoRec, its companion tool, but PhotoRec loses names and folder trees. **EaseUS Data Recovery Wizard** ($49-69 Pro edition) has a modern GUI. It does both carving and name rebuilding when it can. It handles BitLocker-encrypted drives well. And it shows a preview before you buy Pro. For 90% of consumer cases (FAT/NTFS corruption with no physical damage), EaseUS gives an equal or better result in half the time. For a sysadmin at ease with the command line, TestDisk + PhotoRec cover the same cases for free. Our [data recovery software benchmark 2026](/en/blog/data-recovery-software-benchmark-2026) compares the 6 main tools across 160 reproducible test sessions.

How long does external drive recovery take?

For a 1-2 TB external drive with logical corruption (no physical damage), a full session with EaseUS or TestDisk + PhotoRec usually takes **4 to 12 hours** for the full scan. Then add 1 to 4 hours to sort and copy the recovered files to a separate drive. Plan a full weekend if you want to work without rushing. For a drive with minor physical damage (bad sectors but partial read still possible), `ddrescue` in two passes can take 24-72 hours just to clone the disk image. And that's before file recovery from the image even starts. For severe mechanical failures handed to a pro, plan 2 to 4 weeks for the quote plus cleanroom work.

Should you always image the disk before attempting recovery?

Ideally yes, and it's the golden rule of serious recoveries. A disk image (a bit-by-bit clone with `ddrescue` on Linux or Disk Drill on macOS) lets you work on a COPY. You can then try several methods with no risk to the source disk. If a recovery attempt fails or makes the corruption worse, you can always go back to the first image and try another way. The cost: you need a destination disk at least as big as the source. The upside: you turn a stressful problem (ONE shot at recovery) into a calm one (as many tries as you want). For critical cases, image BEFORE you do anything else. For low-stakes cases, you can scan straight away with EaseUS / TestDisk without imaging.