A Seagate external drive that clicks and doesn't show up in File Explorer is one of the few hardware problems where the first 30 seconds of diagnosis actually matters. The click you're hearing tells you almost everything. Either the drive head is trying to park and failing, or the bridge board inside the enclosure is browning out and the drive is spinning up, dying, and restarting in a loop. Those two clicks sound similar from three feet away. They're not the same problem.
Before you touch anything, listen. A healthy Seagate (Expansion, Backup Plus, One Touch) makes a soft whir and a single click on spin-down. A failing one clicks in a steady rhythm — roughly once per second — or double-clicks with a short pause. That rhythm is the head loading, failing to read the service area, retracting, and trying again. If it's a repeated pattern, stop powering it on more than you have to.
Quick reality check: if the drive clicks in a steady loop and never appears in Disk Management, you're looking at a mechanical failure. No software on this page will fix it. Skip to the advanced section.
30-Second Fix: Rule Out the Cable and Port
The most common cause of "clicking and not detected" on a Seagate Expansion or Backup Plus is not the drive. It's current starvation. USB 3.0 ports on the front of a desktop tower, unpowered USB hubs, and long cheap extension cables can't deliver the ~900mA a 2.5" drive needs at spin-up. The drive stutters, the bridge chip resets, and you hear a click loop.
- Unplug the drive.
- Plug the Seagate cable directly into a rear USB port on the motherboard. Skip the front panel, skip the hub, skip the monitor's USB port.
- If it's a 3.5" desktop drive (with a power brick), check the barrel connector is fully seated and the wall adapter LED is on.
- Try a second cable if you have one. The micro-B and USB-C cables Seagate ships fail more than people expect — the connector at the drive end gets flexed and the shield breaks internally.
If the drive mounts now, the fault was power delivery. If it still clicks, move on. Don't keep trying different ports for twenty minutes.
5-Minute Fix: Is It the Enclosure or the Drive?
Shuck it. Open the enclosure and pull the bare drive out. On a Seagate Backup Plus or Expansion 2.5", you pry the plastic shell apart with a plastic card or guitar pick — no screws on most models made after 2016. On 3.5" enclosures, there are usually four rubber feet hiding Phillips screws.
Inside you'll find a standard SATA drive connected to a small USB bridge PCB. That bridge board is a known failure point. Seagate's own bridge chips (and the cheap ones in third-party enclosures) can fail from a USB power event, and the symptom is exactly what you're seeing: the drive spins up, the board browns out, the drive resets, click.
Connect the bare drive to a desktop with a SATA data cable and a SATA power lead, or to a known-good USB-to-SATA adapter with its own power supply.
| What you see | What it means |
|---|---|
| Drive spins up quietly, mounts, no clicks | Bridge board was bad. Replace the enclosure or buy a new USB-SATA adapter. |
| Drive still clicks on direct SATA | The drive itself has failed. Enclosure isn't the problem. |
| Drive beeps or doesn't spin at all | PCB failure or seized spindle motor. Stop here. |
The reason the enclosure matters: Seagate's 2.5" portables have the USB bridge soldered to a board that also handles power regulation. When that regulator degrades, the drive never gets a clean 5V rail, and no amount of Windows-side troubleshooting will help.
Advanced Fix: When the Drive Itself Is Failing
If the bare drive clicks on a known-good SATA connection, you have a mechanical or firmware-level problem. What's actually happening here is the read/write head can't find the servo tracks that tell it where it is on the platter. Common triggers: a drop while spinning, heat cycles in a laptop bag, or a firmware bug in the service area on certain Barracuda-based Seagate portables.
The honest answer: there is no software fix for a drive that clicks on direct SATA. Anyone selling you a "click of death repair tool" is selling you a placebo. Here's what you can actually do, in order of cost:
- Try Seagate SeaTools in DOS mode. Boot from the SeaTools for DOS ISO on a USB stick. If the drive is detected there but not in Windows, it's a partition or firmware handshake issue, not hardware. Run the short and long tests. If it passes, you can often image it with
ddrescueand recover the data. - Image it, don't browse it. If the drive shows up intermittently, every mount attempt stresses the heads. Use GNU ddrescue from a Linux live USB to clone the raw device to a healthy drive. This reads sector by sector and skips bad areas instead of hammering them.
sudo ddrescue -d -r3 /dev/sdb /dev/sdc /home/user/rescue.map
That command reads the failing drive /dev/sdb to target /dev/sdc, retries bad sectors three times, and keeps a map file so you can resume if the drive drops out mid-run. It's the only recovery method that respects a dying drive.
What Not to Do
- Don't run
chkdsk /fon a clicking drive. It writes to the platters and can corrupt data that ddrescue would have saved. - Don't reformat. If the drive mounts for ten seconds and then drops, the partition table isn't your problem.
- Don't keep powering it on to "test." Each spin-up is a stress event on a failing head assembly.
If you've ruled out the cable, tried a different enclosure, and the bare drive still clicks on SATA — that's your answer. The drive is done. Pull whatever data you can with ddrescue, then replace it. And next time, run a SMART check monthly so you see the reallocated sector count climbing before the clicking starts.