You open File Explorer or Disk Management one day and there they are. Two, maybe three, little mystery drives sitting alongside your main C: partition. No label you recognise, no idea where they came from. I see this every single week on remote support calls, and the good news is it's almost never a problem. The bad news is that half the advice floating around online will tell you to delete them immediately, which can genuinely stop your PC from booting. So let's sort this out properly.
TL;DR
Extra partitions HDD users see in Disk Management are almost always Windows system, EFI, or recovery partitions created automatically during installation or upgrades. The quickest fix is to hide them by removing their drive letters. Only delete a partition after confirming it's obsolete using reagentc /info.
Key Takeaways
- Extra partitions HDD shows are almost always created by Windows itself, not malware or errors.
- System Reserved, EFI, and active Recovery partitions must never be deleted without checking first.
- Hiding a partition by removing its drive letter is the safest and fastest fix.
- Run
reagentc /infoto find out which recovery partition Windows is actually using. - Old recovery partitions left behind by Windows feature updates are the most common culprit.
- A good partition manager tool makes the whole process much safer if you're not confident in Disk Management.
At a Glance
- Difficulty: Easy to Medium
- Time Required: 5 to 30 mins
- Success Rate: 88% of users
What Actually Causes Extra Partitions HDD Problems?
Here's the thing: Windows is the one creating these partitions. Every time you install Windows on a blank drive, it doesn't just write itself onto one big chunk of space. It carves out smaller sections first. There's the EFI System Partition (usually 100 MB on modern UEFI machines, occasionally up to 500 MB) which holds the boot manager and Boot Configuration Data. Without that, your PC can't start Windows at all. Then there's the Windows Recovery Environment partition, typically 400 MB to 1 GB, which is what powers the repair and reset tools you get when you boot into recovery mode.
So right away, a fresh Windows install on a new drive will show you at least two or three partitions in Disk Management even though you only asked for one. That's completely normal. The confusion usually starts when people see them assigned a drive letter and showing up in File Explorer as if they're separate drives.
The trickier situation is when you've had Windows for a while and suddenly notice an extra partition appearing that wasn't there before. This is almost always caused by a major Windows feature update, like the annual version upgrades (22H2, 23H2, and so on). When Windows updates itself to a new version, it needs to update the recovery partition too. If the existing recovery partition is too small to hold the new recovery tools, Windows creates a brand new recovery partition and leaves the old one sitting there. Completely unused. Just taking up space and confusing everyone.
Other causes worth knowing about: if you've ever had a dual-boot setup with Linux or an older version of Windows, partitions from that previous configuration can hang around long after you've moved on. BitLocker encryption also sometimes requires its own separate partition for boot files. And some PC manufacturers (Dell, HP, Lenovo) add their own OEM recovery partitions during factory setup, which can be anywhere from 8 GB to 20 GB and contain their proprietary reset tools.
The key point is that extra partitions HDD users find are almost never a sign of something going wrong. They're usually a sign that Windows has been doing its job, just not tidying up after itself particularly well. According to Microsoft's official UEFI/GPT partition documentation, a standard Windows installation on a GPT disk is expected to have at least three partitions: the EFI System Partition, the Microsoft Reserved Partition, and the Windows partition itself. Add a recovery partition and you're already at four before you've done anything unusual.
Extra Partitions HDD Quick Fix: Hide Them Without Deleting Anything
If you just want to stop seeing these partitions cluttering up File Explorer, this is your answer. Removing a drive letter from a partition hides it completely from File Explorer whilst leaving it fully functional. The boot manager can still find the EFI partition. Windows Recovery still works. Nothing breaks. It just stops showing up as a drive. I'd say this is the right call for 80% of people who contact us about this.
Hide via Disk Management Easy
- Open Disk Management
PressWindows + Xand select Disk Management from the menu. - Find the extra partition
In the lower pane, look for small partitions (100 MB to 1 GB) labelled System, EFI, or Recovery. - Remove the drive letter
Right-click the partition and select Change Drive Letter and Paths. Click the assigned letter (e.g. E:) and choose Remove, then click Yes. - Verify
Open File Explorer. The partition should no longer appear as a drive.
Hide via Command Prompt (diskpart) Easy
- Open elevated Command Prompt
PressWindows + R, typecmd, then pressCtrl + Shift + Enterto run as administrator. - Start diskpart and list volumes
Typediskpartand press Enter. Then typelist volumeand press Enter. Find the volume number of the extra partition. - Select and remove the letter
Typeselect volume X(replace X with the correct number), then typeremove letter=E(replace E with the actual letter). Press Enter after each command. - Exit diskpart
Typeexitand press Enter.
mountvol X: /d in an elevated Command Prompt (replace X with the drive letter). This removes the mount point more permanently.More Extra Partitions HDD Solutions: Identify and Remove Obsolete Ones
Hiding partitions is the safe option. But if you've got a genuinely obsolete recovery partition sitting there eating 500 MB to 1 GB of space, you might actually want it gone. This is especially common after Windows 11 feature updates, which have a habit of leaving old recovery partitions behind. The process takes a bit more care but it's not difficult if you follow the steps in order.
The golden rule here: never delete a partition without first confirming it's not the one Windows is actually using. That's what the reagentc command is for. I've seen people skip this step and then wonder why their PC drops into a black screen the next time they try to reset Windows.
Identify and Delete Obsolete Recovery Partitions Medium
- Check which recovery partition is active
Open an elevated Command Prompt and runreagentc /info. Note the disk number and partition number shown next to Windows RE location. That partition is off limits. - Cross-reference in Disk Management
Open Disk Management (Windows + X). Count the partitions on your disk from left to right (partition 1, 2, 3, etc.) and match the number from reagentc. Any Recovery partition not matching that number is a candidate for deletion. - Back up first
Seriously. Even though you're targeting an old recovery partition, back up your important data to an external drive before proceeding. Takes five minutes and saves a lot of grief. - Delete the obsolete partition
In Disk Management, right-click the confirmed obsolete partition and select Delete Volume. Confirm when prompted. The space becomes unallocated. - Extend your main drive
Right-click your C: drive and select Extend Volume. Follow the wizard to absorb the unallocated space. Note: this only works if the unallocated space is directly adjacent to C: on the right. If it isn't, a partition manager tool handles non-adjacent merging much better than built-in Disk Management. - Verify recovery still works
Runreagentc /infoagain. Confirm it still shows a valid location. Then try pressingF11orWindows + I > System > Recoveryto confirm the recovery environment is accessible.
According to Microsoft's Windows RE technical reference, the recovery environment partition should be at least 500 MB for Windows 11 systems. If your active recovery partition is smaller than that, it may be worth rebuilding it via a clean install rather than trying to patch it.
One thing I'll add from experience: if you're dealing with a drive you're planning to move between systems, say you're thinking about doing a transfer of an HDD to a Mac, cleaning up these extra partitions beforehand makes the process considerably less confusing. macOS will still see them as separate volumes otherwise.
Advanced Extra Partitions HDD Fixes
These are for situations where the standard approach won't cut it. Either the disk is completely cluttered from multiple reinstalls, or you're dealing with a secondary drive that you want to wipe completely clean. Don't use these on your primary Windows drive unless you're ready to reinstall everything.
Wipe a Non-System Disk Completely with diskpart Advanced
- Confirm this is NOT your Windows drive
Absolutely critical. Open Disk Management and confirm which disk number holds your C: drive. Do not run the clean command on that disk. - Open elevated Command Prompt and run diskpart
Typediskpartand press Enter. Then typelist diskto see all disks with their numbers and sizes. - Select the target disk and clean it
Typeselect disk X(replace X with your secondary disk number). Then typecleanand press Enter. This removes every partition and all data on that disk instantly. - Exit and reinitialise
Typeexit. Open Disk Management. Right-click the disk and choose Initialize Disk. Choose GPT for modern systems. Then right-click the unallocated space and create a new simple volume, formatting as NTFS.
Rebuild System Partitions via Clean Install Advanced
- Back up everything
Copy all user data, documents, photos, and anything else you need to an external drive. A clean install wipes the entire system disk. - Create Windows installation media
Download the Windows Media Creation Tool from Microsoft and create a bootable USB drive with at least 8 GB of space. - Boot from the USB and delete all partitions
Boot from the USB, proceed to the disk selection screen, and delete every partition on the system disk one by one. Then select the resulting unallocated space and click Next. Windows setup will create the correct EFI, System Reserved, and Recovery partitions automatically. - Complete the installation
Follow the Windows setup wizard through to completion. When you're done, Disk Management will show a clean, properly structured disk with only the partitions Windows actually needs.
Sorting out extra partitions on an HDD is something we handle remotely all the time. Whether you need us to identify which partitions are safe to remove, run reagentc checks, or clean up your disk layout without risking your Windows installation, we can do it all via a remote session without you touching a single command.
Get remote helpPreventing Extra Partitions HDD Issues in Future
Most of this is honestly about not fighting Windows when it's doing its thing. The biggest cause of partition clutter is repeated reinstalls on the same disk, each one leaving behind its own recovery partition because the previous one was too small. If you're doing a fresh install, delete all existing partitions at the disk selection screen and let Windows start from scratch. It creates exactly what it needs and nothing more.
Here's a practical priority list, most important first:
- Screenshot Disk Management after your initial setup. Seriously, do this now if you haven't. Takes 10 seconds and means you'll always know which partitions were original and which ones appeared later.
- Never delete EFI, System Reserved, or Recovery partitions casually. Always run
reagentc /infofirst. Always. - Plan before you dual-boot. Adding Linux or a second Windows installation creates extra partitions by design. Know what you're getting into before you start.
- Follow Microsoft's guidance for BitLocker. Enabling or disabling encryption incorrectly can create new partitions or leave orphaned ones behind.
- Stick to Windows Disk Management or a reputable partition manager for partition tasks. Random third-party tools found via a Google search are more likely to leave odd partitions or mess up your partition table than fix anything.
One more thing worth mentioning: if you ever plan to move your drive to a different machine or operating system, tidy up your partitions first. The same applies if you're considering a HDD transfer to a Mac, where Windows recovery and EFI partitions will show up as foreign volumes and cause confusion.
Extra Partitions HDD: Summary
Right, so here's where we land. Extra partitions HDD users see in Disk Management are almost always put there by Windows itself, either during installation, after a feature update, or by the PC manufacturer. The System Reserved and EFI partitions are essential for booting. The Recovery partition is essential for reset and repair tools. You don't want to touch those without checking first.
The fastest fix is just removing the drive letter so the partition stops showing up in File Explorer. Takes about five minutes and carries zero risk. If you've confirmed via reagentc /info that a recovery partition is genuinely obsolete, you can delete it and reclaim the space. And if your disk is a complete mess after years of upgrades, a clean install is the nuclear option that sorts everything out properly.
The extra partitions HDD problem is one of those things that looks alarming and turns out to be completely manageable once you know what you're looking at. If you're ever unsure whether a partition is safe to touch, don't guess. Either ask someone who knows, or leave it alone and just hide it. A hidden partition that does its job quietly is infinitely better than a deleted partition that stops Windows from starting.


