How to Fix External Hard Disk Detected But Not Opening on Windows 10 & 11

If you have an external hard disk detected but not opening Windows 10 or 11, don't panic. Discover the best ways to repair RAW drives, update USB controllers, and use disk management tools to make your storage accessible again without losing any of your valuable data.

Vera

By Vera / Updated on May 15, 2026

Share this: instagram reddit

Understanding Why Your External Hard Disk Won’t Open

 

 

External hard drive detected but won't open.

I want to help my dad with this issue. He told me that he wanted to access some files from his external hard drive but it won't open in the File Manager even though his laptop recognizes that it's plugged in. We tried plugging it in my laptop, older family laptops, changed the cable, and the same thing happened. Is it possible to fix this problem on our own?

- Question from Reddit

Before diving into the fixes, it helps to understand why this happens. If Windows "detects" the drive (meaning the hardware handshake was successful) but cannot "open" it (meaning the file system cannot be read), the culprit is usually one of the following:

  • Missing or Conflicting Drive Letter: Windows failed to assign a letter (like D: or E:) to the drive.
  • Driver Issues: The USB or disk drivers are outdated, corrupted, or "stuck."
  • File System Corruption: The drive has become "RAW"(e.g., WD external hard drive shows as RAW) or has bad sectors.
  • Permission Issues: Your user account doesn’t have the "ownership" required to access the files.
  • Hardware Power Issues: The USB port isn't providing enough juice to spin the platters or power the controller.
  • Incompatible File System: The drive was formatted for a Mac (HFS+/APFS) and isn't natively readable by Windows.

Phase 1: Preliminary "Quick Fixes" (Try These First!)

Before you start changing system settings, rule out the physical basics. Sometimes the simplest solution is the most effective.

1. Check the Cable and Power Supply

USB cables are notorious for failing internally while looking perfect on the outside.

  • Swap the Cable: Try a different USB cable (ideally a high-quality, shielded one).
  • Try a USB 2.0 vs. 3.0 Port: USB 3.0 ports provide more speed but can sometimes have stricter handshake protocols. An older drive might actually work better in a legacy USB 2.0 port.
  • Check Power: If your external drive has its own power adapter, ensure it is plugged directly into a wall outlet rather than a power strip or a USB hub.

2. Test on Another Computer

If the external hard disk is detected but not opening on your primary PC, plug it into a laptop or a friend's computer. If it opens there, the issue lies with your PC’s software/drivers. If it doesn’t open anywhere, the issue is likely with the drive’s internal partition table.

Phase 2: Fixing External Hard Disk Detected But Not Opening Windows 10

Windows 10 is generally very stable with external storage, but updates can occasionally break driver paths. Here is how to fix the "detected but not opening" issue on Windows 10.

Method 1: Assign a New Drive Letter in Disk Management

Often, the drive is perfectly healthy, but Windows simply forgot to give it a "name." Without a drive letter, it won't show up in File Explorer.

1. Right-click the Start button and select Disk Management.

Open Disk Management

2. Look for your external drive in the list. It will usually be labeled as "Removable" or "Disk 1/2."

3. If you see a bar that is "Healthy" but has no letter (e.g., it just says "New Volume"), right-click it.

4. Select Change Drive Letter and Paths.

 Change Drive Letter and Paths

5. Click Add, choose a letter from the dropdown menu (like M: or X:), and click OK.

Assign a New Drive Letter

6. Check File Explorer; the drive should now appear.

Method 2: Reinstall Disk Drivers

If your external hard disk is detected but not opening Windows 10, the driver might be "ghosted"—a state where the OS thinks a previous version of the device is still connected.

1. Press Windows Key + X and select Device Manager.

Open Device Manager

2. Expand the Disk drives section.

3. Right-click your external hard drive and select Uninstall device.

Uninstall device

4. Unplug the hard drive from the USB port.

5. Restart your computer.

6. Once Windows reboots, plug the drive back in. Windows will automatically detect it and install a fresh, clean driver.

Method 3: Run the Hardware and Devices Troubleshooter

Windows 10 has a hidden troubleshooter that can fix basic "detection" logic errors.

1. Open the Command Prompt as an administrator.

Run cmd as an administrator

2. Type the following command and hit Enter: msdt.exe -id DeviceDiagnostic

3. The Troubleshooter window will pop up. Click Next and let Windows scan for issues. If it finds a problem with the USB controller or the drive, it will offer to fix it automatically.

Run the Hardware and Devices Troubleshooter

Phase 3: Fixing External Hard Disk Detected But Not Opening Windows 11

Windows 11 features a different UI, and its security protocols can sometimes block "unauthenticated" or "unrecognized" external drives.

Method 1: Check "Online" Status in Disk Management

In Windows 11, external drives occasionally get flagged as "Offline" due to a signature collision (this happens if you have two identical drives or a cloned drive).

1. Right-click the Start icon and choose Disk Management.

Open Disk Management

2. In the bottom half of the window, look at the gray box that says "Disk [Number] - Removable."

3. If it says Offline, right-click the box and select Online.

Online Disk

4. The drive should immediately populate in your File Explorer.

Method 2: Update USB Root Hub Drivers

Since Windows 11 uses stricter power management, the USB hub itself might be putting your drive into a "sleep" state where it's detected but won't "wake up" to open.

1. Open Device Manager (right-click Start > Device Manager).

Open Device Manager

2. Scroll to the bottom and expand Universal Serial Bus controllers.

3. Right-click USB Root Hub (USB 3.0) and select Properties.

USB Root Hub Properties

4. Go to the Power Management tab.

5. Uncheck "Allow the computer to turn off this device to save power."

6. Click OK and restart your system. This ensures the drive receives a constant stream of power.

USB Root Hub Power Management

Method 3: Change Permissions (Security Tab)

If you see the drive in File Explorer but get an "Access Denied" error when you try to double-click it, this is a permission issue—common when moving drives between different Windows 11 PCs.

1. Right-click the drive in File Explorer and select Properties.

2. Go to the Security tab and click Advanced.

Advanced

3. Next to "Owner," click Change.

4. Type your Windows username in the box, click Check Names, and then click OK.

5. Check the box "Replace owner on subcontainers and objects" and click Apply.

Replace owner on subcontainers and objects

6. Now, you should have full access to open the disk.

Phase 4: Advanced Troubleshooting (Command Line & Repair)

If the graphical tools failed, it’s time to use the Command Prompt. These methods are powerful and can fix deep-seated file system errors.

1. Run CHKDSK to Repair Corruption

If your external hard disk is detected but not opening, it may have a corrupted "Index" or "MFT" (Master File Table). CHKDSK can fix this.

1. Type cmd in the Windows search bar, right-click, and Run as Administrator.

Run cmd as an administrator

2. Identify your drive letter (e.g., g:).

3. Type the following command: chkdsk g: /f /r (Replace with your actual drive letter).

  • /f tells Windows to fix errors.
  • /r tells Windows to locate bad sectors and recover readable information.

Run CHKDSK

4. If the drive is in use, it may ask to dismount it; type and hit Enter.

5. Once the scan is 100% complete, try opening the drive again.

>> Look here if you find CHKDSK stuck.

2. Fix the "RAW" File System via Diskpart

If Disk Management shows your drive as RAW, it means the file system is so badly damaged that Windows no longer recognizes it as NTFS or FAT32. Warning: This method involves formatting, which erases data. Use data recovery software first if the files are critical!

1. Open Command Prompt (Admin).

2. Type diskpart and hit Enter.

3. Type list disk and identify your external drive by its size.

4. Type select disk X (Replace X with your disk number, e.g., select disk 2).

5. Type clean (This wipes the partition table—CAUTION).

6. Type create partition primary.

7. Type format fs=ntfs quick.

8. Type assign to give it a letter.

Diskpart Format

9. Type exit. Your drive will now be empty but fully accessible.

Phase 5: Data Recovery from an Inaccessible Drive (Using MyRecover)

If your external hard disk is detected but not opening Windows 11/10 and the solutions above suggest formatting or the drive appears as "RAW," do not format it yet! Formatting will wipe your data. Instead, you should use professional data recovery software to extract your files first.

The most reliable tool for this specific scenario is MyRecover. This software is specifically designed to handle drives that are recognized by the system but refuse to open in File Explorer due to partition damage, RAW status, or accidental deletion.

Why Choose MyRecover?

MyRecover
Reliable and User-friendly Data Recovery Software
  • 🌈High Success Rate: It uses advanced scanning algorithms to find files even when the partition table is missing.
  • 🌈Supports 1000+ Formats: Whether it’s photos (JPG/PNG), documents (DOCX/PDF), or videos, MyRecover can identify and restore them.
  • 🌈Deep Scan Technology: It goes beyond the surface to find "lost" files that other standard utilities might miss.
  • 🌈User-Friendly: You don't need to be a technician; the interface is wizard-driven.

Steps to Recover Data with MyRecover:

1. Download and Install: Install MyRecover on your internal C: drive (never install recovery software on the drive you are trying to fix).

2. Select the External Drive: Open the program. You will see a list of all detected drives. Select your inaccessible external hard disk.

3. Start Scan: Click Scan. MyRecover will perform a "Quick Scan" for recently deleted files. Or, choose a "Deep Scan" for RAW or inaccessible data.

Scan

4. Preview and Recover: Once the scan is complete, browse through the folders. You can search for specific file types. Select the files you need and click Recover.

5. Choose a Safe Destination: Save the recovered files to your computer’s internal drive or a different healthy external device.

Recover and Save

After your data is safely backed up via MyRecover, you can proceed to format the problematic drive to make it usable again.

Final Thoughts

Dealing with an external hard disk detected but not opening is a test of patience, but it is rarely a death sentence for your data. By systematically working through Disk Management, driver updates, and command-line repairs, you can almost always regain access.

If you are on Windows 10, focus on the Hardware Troubleshooter and Drive Letter assignment. If you are on Windows 11, pay close attention to Power Management settings and the "Online" status in Disk Management. With the steps outlined above, you’ll have your files back in no time!

FAQs

1. What should I do if my drive makes a clicking or grinding sound?

If you hear physical noises, stop immediately. A clicking sound (often called the "Click of Death") indicates a mechanical failure of the read/write heads. Software fixes like CHKDSK or even recovery tools like MyRecover cannot fix mechanical hardware damage. Continued use could scratch the internal platters, making data recovery impossible even for professionals. Unplug the drive and consult a professional data recovery lab.

2. Why does my external hard drive show in Device Manager but not File Explorer?

It usually means the hardware is fine, but the partition is either missing a drive letter, is "Offline," or is formatted in a file system Windows doesn't recognize.

3. Will CHKDSK delete my data?

Generally, no. CHKDSK /f repairs the file system structure. However, if there is severe physical damage, any disk operation carries a small risk. Always try to back up what you can first.

4. My drive shows as "RAW" in Disk Management. Can I fix this without losing data?

A RAW status means the file system is unrecognizable. While Windows will prompt you to "Format the disk," doing so erases the file directory. To fix this safely:

1. Use MyRecover to scan the RAW partition and export your files to a healthy drive.

2. Once the files are safe, right-click the RAW drive in Disk Management and select Format.

3. Choose NTFS and Quick Format. The drive will now open normally, and you can move your files back onto it.

5. Can a virus prevent an external hard disk from opening?

Yes. Certain malware targets the "Autorun" or "Autoplay" files on external drives to prevent them from mounting, or it may hide all folders and replace them with broken shortcuts.

Solution: Open your antivirus software and perform a custom scan on the drive letter (if assigned). Additionally, use the command attrib -h -r -s /s /d E:\*.* (replace E with your drive letter) in Command Prompt to unhide any files that a virus may have hidden.

6. How does BitLocker affect drives that won't open?

If you see your external hard disk detected but not opening and there is a "gold lock" icon on it, BitLocker is likely waiting for a recovery key. If the drive won't even prompt you for a password, the BitLocker metadata might be corrupted. You can try using the repair-bde command-line tool in Windows to force-mount the drive using your 48-digit recovery key.

Vera
Vera · Editor
As an SEO and Content Strategist at MyRecover, I specialize in developing and optimizing high-impact content focused on data recovery, backup solutions, and digital security. With extensive experience in search engine optimization and user-focused content development, I aim to bridge the gap between technical solutions and user needs. My goal is to ensure that individuals and businesses alike can easily access reliable, effective information to protect and recover their valuable data.