How can I remove a recovery partition and merge two data partitions on an external SSD?

0
0
Asked By MellowPine47 On

I'm repurposing an SSD that used to be an internal Windows system drive and am now using it externally. The drive currently has these partitions, in order: a 300 MB EFI System Partition, a 900 MB Recovery Partition, a 185.86 GB NTFS data partition, a 450 MB Recovery Partition, a 258.15 GB NTFS data partition, and a 20.01 GB Recovery Partition. I want to remove the 450 MB recovery partition between the two NTFS partitions so I can combine them. There is no data on the drive that needs to be preserved, so wiping and recreating the drive is also an option. What is the best way to do this in Windows?

2 Answers

Answered By QuietHarbor6 On

Those EFI and recovery partitions were likely left over from the SSD’s previous role as a Windows boot drive. They aren’t required just because the data partitions use NTFS, and NTFS partitions do not need matching recovery partitions. If you want to keep the existing data partitions, you could delete the 450 MB partition with a suitable partition-management tool and then extend the first NTFS partition into the now-unallocated space, but the unallocated space must be directly beside the partition you want to enlarge. Since nothing needs to be saved, deleting all partitions and starting over avoids the layout and resizing complications.

Answered By CedarFox_82 On

Since the drive contains no data you need, the simplest and cleanest solution is to delete every partition on it and create one new partition using the full capacity. Disk Management usually won’t let you remove every protected EFI or recovery partition through the normal interface, so use an elevated command prompt with DiskPart: run DiskPart, list the disks, select the correct external drive by its number, use `clean` to remove its partition table, then create and format a new partition. Double-check the disk number first, because `clean` permanently removes the selected disk’s partition information.

MellowPine47 -

There isn’t any data on the drive, so wiping the entire disk is fine. I was only looking at Disk Management and File Explorer, where the format option appears to apply to individual partitions.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.