USB Drive Shows Two Partitions – Fix for Windows 10/11

Hardware – Hard Drives Beginner 👁 14 views 📅 Jun 15, 2026

Your USB drive appears as two drives in File Explorer after using it with a Linux live USB tool. Here's why and how to merge them back.

When This Happens

You plug your 64GB USB flash drive into a Windows 10 or 11 PC. Instead of one drive letter, you see two — E: and F: — both with tiny capacities like 200MB and the rest unallocated or showing as a second drive. This usually happens right after you used Rufus or Etcher to create a bootable Linux or Windows installer, then maybe copied some files to the remaining space. The tool partitioned the drive into a bootable region and a storage region, and Windows now sees both as separate volumes.

Root Cause

What's actually happening here is that the USB drive now has a valid partition table with two entries. The first partition is the bootable ISO data (often FAT32, 2-4GB), and the second is whatever space is left — sometimes FAT32, sometimes NTFS, sometimes unformatted. Windows, being Windows, mounts every partition it can recognize. So you get two drive letters. The drive isn't corrupted — it's just partitioned like a hard drive would be. The fix is to nuke the partition table entirely and rebuild it as a single volume.

The Fix – Windows Built-in Tools (No Third-Party Software)

Skip the GUI disk management — it won't let you easily delete all partitions on a removable drive. Use Diskpart from an admin command prompt. This works on Windows 7, 8, 10, and 11. It's fast and reliable.

  1. Open Command Prompt as Administrator. Hit Start, type cmd, right-click "Command Prompt", choose "Run as administrator".
  2. Type diskpart and press Enter. A new window appears with the DISKPART> prompt.
  3. Type list disk. You'll see all disks. Find your USB drive by size — mine was "Disk 2" with 58GB. Be absolutely certain you pick the right disk. If you pick your system drive, you'll wipe Windows.
  4. Type select disk 2 (replace 2 with your USB disk number). It says "Disk 2 is now the selected disk."
  5. Type clean. This wipes the partition table and MBR/GPT data. The drive becomes completely unallocated. No confirmation — it just does it. There's no undo.
  6. Type create partition primary. This creates a single partition covering the whole drive.
  7. Type format fs=ntfs quick (or format fs=fat32 quick if you need compatibility with older devices/TVs). NTFS is fine for general file storage on Windows, FAT32 if you ever plug it into a camera, car, or game console. Quick format takes seconds.
  8. Type assign letter=E (choose a letter not in use). The drive gets a letter.
  9. Type exit to close Diskpart, then close the command window.

Your USB drive now shows as a single drive in File Explorer. Full capacity restored.

Why This Works

The reason step 5 works is because clean doesn't just delete files — it zeroes out the bootsector and partition table. Windows then sees a blank drive and happily lets you create a single partition. If you'd tried to delete partitions in Disk Management (diskmgmt.msc), you'd run into the "Delete Volume" option being greyed out for the bootable partition because Windows treats it as a system partition. Diskpart bypasses that protection.

If It Still Fails

Three edge cases to check:

  • Write protection. Some cheap USB drives have a physical switch. Others have firmware-level write protection. If clean gives you a "Disk is write-protected" error, the drive might be failing or locked. Try a different USB port, reboot, or run diskpart with attributes disk clear readonly before cleaning.
  • Drive shows as 0 bytes after clean. This means the USB controller is confused. Unplug the drive, wait 10 seconds, plug it back in. Then go back to step 6 and create the partition again.
  • Linux leftover GPT protective partition. If you used Etcher or dd on Linux, the drive might have a hybrid MBR/GPT table. Running clean in Diskpart removes both. If after step 7 the drive still shows weird capacity (e.g., 2TB on a 32GB stick), run convert mbr right after clean and before creating the partition.

If none of that works, the USB drive is likely dead. Toss it. Some drives from 2015-2018 have a known controller bug where they split into two drives randomly. No fix for that — it's hardware.

Was this solution helpful?