Quick fix: Open Disk Management (diskmgmt.msc). If the drive shows but has no letter, right-click → Change Drive Letter and Paths → Add. If the drive shows as Offline, right-click → Online. If not in Disk Management at all, the drive isn’t powered or the USB enclosure controller has failed.
You plug in your external hard drive. Windows chimes the USB-connect sound. The drive’s LED blinks. But File Explorer doesn’t show it, and Disk Management may show it without a letter or with strange labels. Three common scenarios, three different fixes.
Affects: Windows 11 (and Windows 10) with USB external HDDs and SSDs.
Fix time: ~10 minutes.
What causes this
External drives go through three Windows layers to appear in File Explorer. Driver layer: Windows must load a USB Mass Storage Class driver and detect the drive. Partition layer: the drive needs a valid partition table (MBR or GPT) with at least one mountable partition. Mount layer: Windows assigns a drive letter, completing the chain to File Explorer.
A failure at any layer breaks the chain. Most issues are at the mount layer (drive recognized but no letter), some at the partition layer (drive recognized but partition table is corrupted), and a few at the driver layer (drive not detected at all).
Method 1: Assign a drive letter in Disk Management
The most common scenario.
- Press
Win + X→ Disk Management. (Or rundiskmgmt.msc.) - Look for your external drive. It appears as Disk 1 or higher (Disk 0 is usually the internal boot drive).
- If the drive shows as Online with one or more partitions but no drive letter: right-click the partition → Change Drive Letter and Paths → Add → Assign the following drive letter. Pick a free letter (E, F, G). Click OK.
- If the drive shows as Offline: right-click the disk label (left side, “Disk 1”) → Online. Windows may auto-assign a letter; if not, repeat step 3.
- If the drive shows as Unallocated: the partition table is missing or corrupted. Right-click → New Simple Volume only if you accept that all data on the drive will be erased.
- If the drive shows but the partition is labeled RAW: filesystem is corrupted — see Method 3 for recovery.
- File Explorer should immediately show the drive with the new letter.
This handles the typical case where the drive is healthy but Windows didn’t auto-mount it.
Method 2: Reinstall USB and disk drivers
For when the drive doesn’t appear in Disk Management at all but you hear the USB chime on plug-in.
- Press
Win + X→ Device Manager. - Expand Disk drives. If your external drive is listed (it may show as “USB Mass Storage Device” or the actual drive model), right-click → Uninstall device. Don’t tick “Delete driver software.”
- Disconnect the drive. Reconnect it after 10 seconds. Windows re-detects and re-installs the driver fresh.
- If the drive still doesn’t appear: in Device Manager, expand Universal Serial Bus controllers. Look for any entry with a yellow warning triangle. Right-click → Uninstall device → OK. Reboot to reinstall USB stack.
- Try a different USB port — back-of-PC ports are typically more reliable than front-panel or hub ports.
- Try a different USB cable. USB cables on external drives are common failure points (especially MicroUSB on older 2.5″ drives).
- If the drive is 3.5″ with external power: verify the power adapter LED is on. Failed power adapters are the most common cause for “drive not detected at all” on 3.5″ enclosures.
This is the right path when there’s no entry in Disk Management — driver layer fails before partition layer.
Method 3: Repair a RAW or corrupted partition
For drives that show in Disk Management with a partition labeled RAW or no detected file system.
- Open Terminal (Admin).
- Run:
chkdsk X: /fReplace X with the drive’s letter (if it has one) or assign one first. CHKDSK attempts to repair the filesystem.
- If CHKDSK reports the drive is RAW and can’t be scanned: the file system header is destroyed. Use a recovery tool: TestDisk (free, from cgsecurity.org) can rebuild partition tables and recover files from corrupted volumes.
- For Windows-native repair attempt without third-party tools:
diskpartfrom Terminal →list disk→select disk N(your external) →list partition→select partition 1→assign letter=X. Then run CHKDSK. - If you have data you need to recover: do not format the drive. Use Recuva, R-Studio, or PhotoRec to extract files from the RAW partition first, then reformat with
format X: /fs:NTFS /q. - For drives consistently showing RAW after multiple uses: the drive itself is failing. Recover what you can, then replace.
This path balances data preservation with restoring functionality. Data recovery before reformatting is critical if the contents matter.
How to verify the fix worked
- Open File Explorer. The drive appears with its assigned letter and shows free/total space.
- In Disk Management, the drive shows as Online with a healthy partition (NTFS or exFAT) and a drive letter.
- Try copying a small file to the drive and reading it back. If both succeed, the drive is fully working.
If none of these work
If the drive isn’t detected by any PC (you’ve tried two different computers and two USB cables), the drive itself or its enclosure controller has failed. For external drives with USB-to-SATA bridge chips, the bridge often fails before the drive itself — open the enclosure (it usually voids warranty) and remove the bare SATA drive, then connect via SATA to a desktop or via a SATA-to-USB adapter. If the drive responds via direct SATA but not via the original enclosure, the bridge is the fault and you can swap the enclosure to recover data. If even direct SATA fails, the drive’s controller board or platters have failed; for important data, professional recovery services (DriveSavers, Ontrack) can salvage from physically damaged drives at significant cost. For 2.5″ SSDs that disappear randomly: check Windows’s power settings — under USB selective suspend in advanced power options, set to Disabled.
Bottom line: Disk Management is the right first stop — assigning a missing letter resolves most “drive not detected” cases. Driver reinstall and a different cable cover most of the rest.