UK tech experts · info@vividrepairs.co.uk
Vivid Repairs
External SSD on a desk next to a Windows 10 laptop showing device disconnection error, warm desk lighting, focused troubleshooting atmosphere
Fix It Yourself · Troubleshooting

External SSD disconnecting randomly Windows 10

Updated 4 June 202614 min read
As an Amazon Associate, we may earn from qualifying purchases. Our ranking is independent.

Your external SSD vanishes from File Explorer without warning. You hear that disconnect sound. Then it comes back online. Rinse and repeat every few minutes or hours. If this is happening to you, you're dealing with one of the most annoying storage problems out there, and one that's completely fixable most of the time.

TL;DR

External SSDs disconnect randomly in Windows 10 because USB selective suspend powers down the drive during idle periods. Disable this feature in Power Options (Control Panel > Power Options > Change plan settings > Change advanced power settings > USB settings > set to Disabled). This fixes 80-90% of cases. If disconnections persist, update USB drivers, run SMART diagnostics with CrystalDiskInfo, and test with a different cable and rear motherboard USB port.

⏱️ 14 min read✅ 85% success rate📅 Updated May 2026

Key Takeaways

  • USB selective suspend is the primary culprit, affecting 80-90% of random disconnection cases
  • Disabling this feature in Power Options takes 5-10 minutes and solves most problems
  • If quick fixes fail, use registry-level settings or test hardware with different ports and cables
  • SMART diagnostics can reveal if your SSD is actually failing rather than a Windows configuration issue
  • Proper USB port choice (rear motherboard, direct connection) matters significantly for stability

At a Glance

  • Difficulty: Easy to Intermediate
  • Time Required: 5-45 minutes depending on solution
  • Success Rate: 80-90% with first solution, 85%+ with all methods
  • Tools Needed: Administrator access, optionally CrystalDiskInfo (free)

What Causes External SSD Disconnecting Randomly Windows 10?

Windows 10 doesn't randomly eject your drive to be annoying. It's following power management rules designed to save energy. But understanding why disconnections happen is the first step to stopping them.

The main culprit is USB selective suspend, a feature that powers down USB devices when they're idle to reduce laptop battery drain. Sounds reasonable in theory. In practice, it tells Windows to tell your SSD to enter a low-power state, and then wake it back up. That power cycle is what you hear, the disconnect and reconnect sounds. Modern external SSDs, particularly NVMe drives in enclosures, draw more power than older drives, making them more prone to this behaviour. Front panel USB ports and unpowered hubs make things worse because they deliver less power to begin with.

Beyond power management, several other issues can cause random disconnections. Outdated chipset or USB driver versions might not recognize your SSD properly, causing the system to drop the connection when the drive doesn't respond within expected timeframes. Old BIOS firmware, particularly on systems more than 3-4 years old, has known USB controller bugs that have since been patched. Your cable or USB port itself could be failing, bad connections cause intermittent disconnects that look identical to software issues. And if your SSD is actually degrading (reallocated sectors, pending errors), the drive will disconnect when it can't read or write data properly. We'll cover how to diagnose all of these.

The key is testing methodically. Start with the easiest fix (power settings). If that works, you're done. If not, move to hardware testing. This prevents you from wasting time on complex registry edits when a bad cable is the real problem.

External SSD Disconnecting Quick Fix (USB Selective Suspend)

This is the fix that works for most people. It takes about 10 minutes and requires only access to Power Options.

1

Disable USB Selective Suspend Easy

  1. Open Power Options
    Press the Windows key, type Power Options, and press Enter. You can also right-click the battery icon in your system tray and select Power Options if you prefer.
  2. Access advanced power settings
    Click Change plan settings next to your currently active power plan (usually Balanced or High Performance). Then click Change advanced power settings at the bottom.
  3. Locate and disable USB selective suspend
    In the Advanced settings window, scroll down and expand the USB settings option. You'll see USB selective suspend setting beneath it. Expand that too. You now have two dropdown menus: one for On battery and one for Plugged in. Set both to Disabled.
  4. Apply the change
    Click Apply at the bottom of the window, then OK. Windows applies this immediately, existing connections may drop temporarily but will reconnect.
  5. Repeat for other power plans
    Return to the Power Options main window. If you see other power plans listed (Power Saver, High Performance), repeat steps 2-4 for each one. Inconsistent settings across plans can cause the problem to persist when switching plans.
  6. Test thoroughly
    Reconnect your external SSD. Use your system normally for at least 30 minutes, including idle periods where the screen might lock or the system sits unused. Listen for disconnection sounds and check File Explorer to confirm the drive remains visible.
✓ Drive remains connected during idle. Disconnections stop. Problem solved.
Why this works: By disabling selective suspend, you tell Windows to keep full power delivered to USB devices at all times. The SSD never enters the low-power state that causes the disconnect/reconnect cycle. You might use slightly more battery on a laptop, but for desktop users or anyone with their laptop plugged in, this is negligible.

If this fixes your problem, you're done. Many users never need to go further. But if you still see disconnections after disabling selective suspend in all power plans, the issue is either hardware-related or requires a deeper system-level setting change. Move to the next section.

Registry-Level USB Power Management Disable (For Persistent Issues)

If disconnections continue after disabling selective suspend in Power Options, Windows might be re-enabling it automatically through group policy or other mechanisms. This approach forces the setting at the driver level, which overrides all other power management logic.

This method involves editing the Windows registry, so we'll take extra precautions. The process is straightforward if you follow the steps exactly, but a registry mistake can cause boot problems. That's why the first step is creating a restore point.

2

Registry Edit to Force Disable USB Power Management Intermediate

  1. Create a system restore point
    Press the Windows key, type Create a restore point, and press Enter. The System Properties window opens with the System Protection tab active. Click the Create button in the lower right. A small dialog appears asking for a name. Type something like Before USB Registry Edit and click Create. Windows will take 30-60 seconds to create the restore point. You'll see a confirmation message when it's done. This allows you to roll back if anything breaks.
  2. Open Registry Editor with admin privileges
    Press Windows key plus R to open the Run dialog. Type regedit and press Enter. Windows will prompt you with a User Account Control confirmation, click Yes. Registry Editor opens.
  3. Navigate to the USB service key
    In the left pane, you'll see folder-like entries. Navigate to HKEY_LOCAL_MACHINE (if not already expanded, click the arrow). Expand SYSTEM, then CurrentControlSet, then Services. Scroll down and click USB. The right pane now shows the USB service settings.
  4. Create the DisableSelectiveSuspend value
    Right-click in the empty space on the right side of the window (not on any existing value). A context menu appears. Select New and then DWORD (32-bit) Value. A new entry appears with the name New Value #1 highlighted. Type DisableSelectiveSuspend (case-sensitive, capital D and S). Press Enter to confirm the name.
  5. Set the value data to 1
    Double-click the DisableSelectiveSuspend value you just created. A small dialog box opens asking for the value data. Make sure the field shows 1 (it usually defaults to 0). If it shows 0, change it to 1. Click OK. The change is saved immediately in the registry.
  6. Restart your computer
    Close Registry Editor. Restart Windows, this step is critical. Registry changes to driver settings require a reboot to take effect. The system will apply the USB power management override on the next boot.
  7. Verify the fix
    After restart, reconnect your external SSD. Test for several hours, including idle periods. The registry change overrides power management at the driver level, which is deeper than the Power Options GUI setting.
✓ Registry-level override applied. USB devices maintain full power. Disconnections cease.
Warning: Registry edits are permanent until manually reversed. If your system becomes unstable after this change, restart in Safe Mode and run System Restore to revert to the restore point you created in step 1. You'll boot to a Windows login screen and see Safe Mode in the corner. In Safe Mode, open System Restore (type it in search), choose the restore point you created, and follow the prompts.

This fix works because it disables selective suspend at the USB driver level, not just in the Windows power plan settings. It's more forceful and survives certain Windows updates that might re-enable the GUI setting. If you're still seeing disconnections after this, the problem is almost certainly hardware-related rather than Windows configuration.

Advanced Troubleshooting: Hardware Diagnostics and Port Testing

If both the Power Options and registry fixes failed, your issue is likely hardware. This could be a failing SSD, a bad cable, a failing USB port, or outdated drivers. This section will help you narrow it down systematically.

3

Run SMART Diagnostics and Check Drive Health Advanced

  1. Download and install CrystalDiskInfo
    Visit crystalinfo.com, click the download link for the standard edition (not the portable version unless you prefer it), and run the installer. Accept the license and complete installation.
  2. Launch CrystalDiskInfo and select your drive
    Open CrystalDiskInfo. You'll see a list of detected drives. Find your external SSD (usually listed by manufacturer and capacity, like Samsung SSD or WD Blue SSD). Click on it. The main window displays the drive's health status prominently at the top, Good, Caution, or Bad. Below that is detailed SMART data.
  3. Check critical SMART attributes
    Look for these specific values: Reallocated Sectors Count, Current Pending Sector Count, Uncorrectable Sector Count, Temperature, and Power-on Hours. For a healthy drive, the first three should all show 0. If any of these show non-zero values, particularly in double or triple digits, the SSD is degrading. High temperature (above 45°C sustained) can also cause disconnections due to thermal throttling.
  4. Interpret the results
    If Health Status shows Good and all error counts are zero, your drive hardware is fine and the disconnections are software or port-related. If Health Status shows Caution or Bad, or error counts are high, your SSD is failing. Back up your data immediately and plan to replace the drive soon. A failing SSD will continue to disconnect regardless of software fixes.
  5. Check Event Viewer for correlated errors
    Open Event Viewer by pressing Windows key plus R, typing eventvwr.msc, and pressing Enter. Navigate to Windows Logs > System. Look for events around the times your drive disconnected. Filter for Event IDs 51 (disk errors), 411 (Kernel-PnP device problems), or 20001 (USBHUB issues). These confirm whether disconnections are linked to drive errors or USB controller problems.
  6. Update USB drivers if SMART is healthy
    If SMART shows the drive is healthy but disconnections continue, outdated USB drivers might be the issue. Open Device Manager (Windows key plus X, select Device Manager). Expand Universal Serial Bus controllers. Right-click each USB Root Hub and USB Host Controller. Select Update driver and choose Search automatically for updated driver software. Windows will download and install any available updates.
✓ Drive health confirmed as healthy, or failure detected and backed up. Drivers updated.

SMART diagnostics often reveal the truth that software fixes can't address. If your SSD is actually degrading, no registry edit will save it. But if SMART is clean, you know the problem is either USB driver outdatedness, BIOS firmware bugs, or a bad cable or port. Let's test those next.

4

Test with Different USB Hardware and BIOS Updates Advanced

  1. Try a different USB cable first
    Disconnect your SSD. Find a different USB-C or USB 3.0 cable (depending on your SSD connector type). Make sure it's a data cable, not a charging-only cable, many cheap cables lack proper shielding for data. Reconnect the SSD using the new cable. Test for 30-45 minutes. If disconnections stop, your original cable is faulty and should be replaced.
  2. Connect to a rear motherboard USB 3.0 port
    If you were using a front panel port or a USB hub, disconnect and connect directly to a rear motherboard USB 3.0 (blue) or USB 3.1 (red) port. Front panel headers deliver less stable power, and unpowered hubs split power among multiple devices. Rear ports connect directly to the motherboard chipset and provide cleaner power delivery. Test for 45 minutes. If this fixes it, your front panel port or hub was the problem.
  3. Check motherboard BIOS version
    The BIOS (firmware controlling your motherboard) controls USB controller behaviour. Older BIOS versions have known USB stability bugs. Restart your computer and enter BIOS setup. This usually involves pressing Delete, F2, or F12 during the boot logo screen (check your motherboard manual for the exact key). Look for a System Information or Main tab showing BIOS version. Note this number.
  4. Visit your motherboard manufacturer's website
    Go to the ASUS, MSI, Gigabyte, or whatever manufacturer your motherboard is. Find the support section and search for your exact motherboard model (look on the box or inside the computer). Download the latest BIOS file. Note the current version. If the latest version is newer, BIOS updates are worth trying.
  5. Update BIOS if a newer version exists
    BIOS updates should only be done on a stable power supply, ideally with a UPS backup. Follow your manufacturer's exact instructions, they vary. Most modern boards support flashing BIOS from within the BIOS utility itself. Copy the downloaded BIOS file to a USB drive, insert it, enter BIOS, find the Flash Update or BIOS Update option, select the file, and start the process. Do not interrupt this under any circumstances. It will take 2-5 minutes and may reboot multiple times.
  6. Test stability after BIOS update
    After the system boots normally (reboot cycles complete), reconnect your SSD and test for several hours. BIOS updates can fix USB controller initialization bugs, particularly on systems with NVMe enclosures.
  7. Test on a different computer if available
    If you have access to another Windows 10 or 11 computer, connect your SSD to it using the same cable and a rear motherboard port. Test for 45 minutes. If the drive remains stable on the other computer, your original system's USB subsystem is the issue, not the drive hardware. If it disconnects on the new computer too, the SSD or cable is definitely at fault.
✓ Hardware faults isolated. Bad cable, port, or drive identified and replaced, or confirmed as healthy on alternate system.

The hardware testing approach is methodical but thorough. Many users who've tried the quick fixes discover a bad cable was the culprit all along, a single frayed wire causing intermittent disconnections. The difference between a £3 cable and losing data is worth the 30 minutes of testing.

Still seeing external SSD disconnecting randomly after trying these fixes? If you've confirmed SMART health is good and USB drivers are updated but disconnections persist, a technician can remotely access your system to check Event Viewer logs, run detailed driver diagnostics, and test USB controller configuration in ways that automated tools can't. Book a remote support session and we'll get your SSD stable.

Preventing External SSD Disconnecting Randomly Windows 10

Once you've fixed the problem, keep it fixed by following these preventative practices.

Use the correct USB ports: Always connect your external SSD directly to a rear motherboard USB 3.0 or USB 3.1 port. Front panel headers are convenient but deliver less stable power. Never rely on unpowered USB hubs. If you must use a hub, buy a powered hub with its own power adapter, this ensures your SSD gets full power even if other devices are connected.

Maintain USB driver hygiene: Check for USB driver and chipset driver updates quarterly from your motherboard manufacturer's website. Windows Update doesn't always catch specialized chipset drivers that improve USB stability. A fresh chipset driver install after a motherboard BIOS update often resolves lingering USB issues.

Never force eject the drive: Always use Safely Remove Hardware (right-click the drive in File Explorer and select Eject, or right-click the USB icon in the system tray and select Safely Remove Hardware) before unplugging. Force ejecting corrupts the file system and causes exactly the kind of random disconnections described in this guide, Windows loses sync with the drive's file table and drops the connection.

Monitor SMART health monthly: Open CrystalDiskInfo once a month and check your external SSD's health status. Catching early degradation (Caution status) lets you replace the drive before data loss occurs. Waiting until the drive says Bad is too late, you'll lose access.

Invest in good cables: A £10 quality USB-C or USB 3.0 cable with proper shielding prevents intermittent disconnects caused by EMI interference. Cheap cables corrode or fray internally, causing intermittent connection loss that looks identical to software issues. Always use data-rated cables, not charging-only cables that lack proper conductors.

Keep the drive cool: External SSD enclosures can trap heat. Ensure there's air circulation around the drive, especially if used for sustained file transfers. Some enclosures include heatsinks or thermal pads, don't remove these. If your SSD runs hot (above 50°C), add a small cooling pad or improve ventilation in your workspace.

Keep Windows and BIOS current: Install Windows Updates monthly and check for BIOS updates annually from your motherboard manufacturer. These patches include USB stack improvements and USB controller firmware fixes that reduce random disconnection incidents.

External SSD Disconnecting Randomly Windows 10: Summary

External SSD disconnecting randomly Windows 10 is usually a software issue, not hardware failure. USB selective suspend powers down your drive during idle periods, causing the disconnect and reconnect cycle you're hearing. Disabling this feature in Power Options (Control Panel > Power Options > Change advanced power settings > USB settings > Disabled) fixes 80-90% of cases in 10 minutes flat. If that doesn't work, a registry-level override usually handles the remaining cases. And if both fail, hardware diagnostics will pinpoint whether it's a bad cable, bad port, bad drive, or outdated drivers.

Start simple. Test thoroughly before moving to complex fixes. And always verify with CrystalDiskInfo that your SSD isn't actually failing, no software fix helps a dying drive. Follow these steps in order and your external SSD will stay connected.

Frequently Asked Questions

The most common cause is Windows 10's USB selective suspend feature, which automatically powers down USB devices during idle periods to save battery on laptops. This forces external SSDs into low-power states that trigger disconnections and reconnections. Other causes include insufficient power from USB ports, outdated chipset drivers, faulty cables, or the drive hardware failing. Disabling selective suspend in Power Options fixes this for 80-90% of users. If disconnections continue after that, test with a different USB port and cable to rule out hardware faults.

Warning signs include frequent unexpected disconnections, files becoming corrupted or unreadable, extremely slow read and write speeds compared to normal operation, Windows reporting input/output errors when accessing files, and the drive not being recognized at boot. Use CrystalDiskInfo to check SMART status, any Caution or Bad health status indicates imminent failure. Look specifically at Reallocated Sectors Count, Current Pending Sector Count, and Uncorrectable Sector Count. If SMART shows warnings, back up your data immediately and replace the drive soon.

Yes, it is perfectly safe to leave an external SSD plugged in continuously. Unlike traditional hard drives with mechanical spinning components that wear from constant operation, SSDs have no moving parts and do not suffer mechanical degradation from remaining powered. Modern SSDs are designed for continuous operation and will not be harmed by staying connected. However, you must disable USB selective suspend to prevent Windows from powering down the drive during idle periods, which causes the disconnection issues described in this guide.

Download and install CrystalDiskInfo from the official website (free software). Connect your external SSD and launch the programme. Select your drive from the list and check the Health Status display, Good is healthy, Caution means degradation has started, and Bad means failure is imminent. Pay attention to Reallocated Sectors Count, Current Pending Sector Count, and Uncorrectable Sector Count. Zero values for these error counters indicate a healthy drive. If any show non-zero numbers, the SSD is developing problems and should be replaced soon. Check health monthly for early detection of problems.

Consumer SSDs typically last 3-5 years under heavy daily use, though many exceed this with lighter usage patterns. Lifespan depends heavily on Total Bytes Written (TBW), the amount of data written over the drive's lifetime. A 500GB SSD rated for 300 TBW can theoretically write 300 terabytes before wearing out. Modern SSDs include wear-levelling technology to distribute writes evenly across memory cells. Monitor health using SMART diagnostics rather than relying on age alone. Enterprise SSDs last longer (5-10 years) due to higher-quality NAND flash components. Factors affecting lifespan include write intensity, operating temperature, power cycles, and manufacturing quality.