View Categories

External Hard Drive Detected but Not Showing in Windows or macOS

3 min read

Overview #

If your external hard drive powers on but does not appear in File Explorer or Finder, it usually means the system recognizes the device hardware but cannot access or mount its file system.
This problem is common after improper ejection, cable damage, or file-system corruption.
This guide shows how to safely verify power, confirm detection, and restore access without risking data loss.

What you’ll learn

  • How to confirm that the external drive is physically detected
  • How to mount or assign a drive letter manually
  • How to check for file-system errors and repair them
  • How to verify cable, port, and power status

Estimated time: 15–25 minutes
Skill level: Beginner to Intermediate


Terms and Definitions #

TermMeaning
MountThe process of making a storage volume accessible to the operating system
File SystemThe data structure used by drives (e.g., NTFS, exFAT, APFS, HFS+)
PartitionA defined storage region within a physical drive
Disk Utility / Disk ManagementBuilt-in macOS and Windows tools for managing storage devices

Steps #

Step 1 — Confirm Power and Connection #

  1. Plug the drive directly into your computer, avoiding hubs or adapters.
  2. If the drive has a separate power supply, ensure it is plugged in and the LED indicator is lit.
  3. Try a different USB cable and another port on the computer.
  4. Listen or feel for drive spin or vibration when connected.

If there is no response at all, suspect a power issue, bad cable, or defective enclosure.


Step 2 — Check if the System Detects the Drive #

Windows PowerShell

Get-Disk

Displays all drives detected by Windows, even those without letters.
If your drive appears here with no letter, it is recognized but not mounted.

macOS Terminal

diskutil list

Lists all storage devices connected to the system.
If the drive is listed but not mounted, continue to the next step.


Step 3 — Mount or Assign the Drive #

Windows

  1. Right-click the Start menu and choose Disk Management.
  2. Locate the external drive; it may show as “Offline” or “Unallocated.”
  3. If it is “Offline,” right-click and choose Online.
  4. If it has no letter, right-click the partition and choose Change Drive Letter and PathsAdd.
  5. Assign an unused letter (for example, “E”) and click OK.

macOS

diskutil mountDisk /dev/disk2

Replace /dev/disk2 with the identifier for your external drive from the previous command.
If you receive an error such as “Volume not formatted,” proceed to file-system repair.


Step 4 — Check File-System Health #

Windows

chkdsk E: /f

Replace E: with your drive letter. This checks and repairs file-system errors.

macOS

diskutil verifyDisk /dev/disk2
diskutil repairDisk /dev/disk2

Performs verification and repairs any catalog or directory structure issues.

If the drive is read-only or formatted for another OS (for example, NTFS on macOS), install a compatible file-system driver or use a read-only access tool.


Step 5 — Rebuild the Partition Table (Advanced) #

If the drive appears as “Unallocated” or “Not Initialized,” the partition table may be corrupted.

Windows

Get-Disk | Where-Object IsOffline -Eq $false | Select-Object Number, PartitionStyle

If the PartitionStyle is blank or shows “RAW,” you may need to re-initialize the disk.
To preserve data, use recovery software before re-initializing.
To format a new disk:

Initialize-Disk -Number 1 -PartitionStyle GPT
New-Partition -DiskNumber 1 -UseMaximumSize -AssignDriveLetter | Format-Volume -FileSystem NTFS -NewFileSystemLabel "External"

macOS

diskutil eraseDisk APFS "External" /dev/disk2

Erases and reformats the disk. Only perform this if recovery is not required.


Step 6 — Inspect System Logs #

Windows PowerShell

Get-WinEvent -LogName System | Where-Object {$_.Message -like "*disk*"} | Select-Object TimeCreated, Message -First 10

Displays the ten most recent disk-related system events.

macOS

log show --predicate 'eventMessage CONTAINS "disk"' --last 1h

Shows disk connection and error logs from the last hour.
Use these logs to identify repeated I/O or mounting errors.


Step 7 — Test on Another Computer #

If the drive works on another computer, the issue lies with your system’s drivers or ports.
If it fails everywhere, the drive’s enclosure or internal mechanism is likely faulty.
Try a different cable, and if possible, connect the bare drive through a new USB-to-SATA adapter.


Step 8 — Verify Health and SMART Status #

Windows

Get-PhysicalDisk | Select-Object FriendlyName, HealthStatus, OperationalStatus

macOS

diskutil info /dev/disk2 | grep SMART

The SMART status should read “Verified.”
A failing or “Not Supported” result indicates drive wear or controller failure.


Verification #

When the drive mounts successfully:

  1. It appears in File Explorer or Finder.
  2. It shows normal capacity and volume label.
  3. Files open without delay or read errors.
  4. No new errors appear in system logs.

Run a brief copy test to confirm write functionality.


Conclusion #

An external hard drive that is detected but not visible in the file manager is usually caused by a missing mount point, damaged partition table, or file-system corruption.
Following these steps allows you to verify connection integrity, restore visibility, and confirm data access safely.
If the drive repeatedly disconnects or fails SMART checks, back up any accessible files immediately and consider replacing the device.

Powered by BetterDocs

Leave a Reply

Your email address will not be published. Required fields are marked *