How to Handle a USB Drive That Doesn’t Show Up Properly
If your USB drive is not visible in File Explorer but shows up in Disk Management on Windows, follow the steps below:
Step 1: Check if It’s a Bootable Device
Ask yourself:
- Was this USB previously used for:
- Installing an OS (Windows, Linux, Chrome OS)?
- Recovery or rescue tools?
- BIOS/UEFI firmware updates?
If yes, then it likely has:
- Multiple partitions
- Hidden/protected volumes
- Non-Windows-compatible file systems (like EXT, SquashFS)
You can confirm in:
- Disk Management (weird layout, multiple small partitions, some undeletable)
- Or tools like
diskpart
orGParted
Step 2: Decide Your Goal
Goal | Action |
---|---|
Keep using it as a bootable device | Overwrite with a new image using tools like Rufus or Etcher (no need to delete partitions first) |
Reclaim as regular storage | Use diskpart clean to wipe all partitions, then create a new simple volume |
Step 3: Wipe If Needed
If your goal is to reuse the USB:
- Use
diskpart
and runclean
- Then use Disk Management to create a new partition
Use diskpart
to Clean the USB:
- Press
Win + R
→ typecmd
→ right-click and run as Administrator - Type
diskpart
→ press Enter - Type:
list disk
→ This shows all disks. Find your USB by its size (e.g., 15 GB).
- Type:
select disk 1
(Replace 1
with the number of your USB disk)
- Type:
clean
→ This wipes the entire partition table, making the USB fully unallocated.
- Then type:
exit
Reinitialize in Disk Management:
- Open Disk Management again.
- You’ll see the USB as “Unallocated”.
- Right-click → New Simple Volume…
- Format as
exFAT
orNTFS
→ assign drive letter → done.
Rule of Thumb
If a USB has multiple weird-looking partitions or missing drive letters:
Always suspect it was a bootable or recovery device.
From there:
- Read-only or unremovable partitions? → Use
diskpart
- Just missing drive letter, but one readable partition exists? → Assign letter in Disk Management