Forum Discussion
HenryRobinson
Sep 20, 2024Copper Contributor
How to merge two partitions of external hard disk on Windows 10/11?
Hi members, I'm looking for some guidance on merging two partitions on an external hard disk on my Windows PC. The drive currently has two separate partitions, and I'd like to combine them into o...
ElliottSanders
Sep 20, 2024Copper Contributor
It is indeed possible to merge two partitions of an external hard disk using the CMD command line through "diskpart", but you need to be careful in the operation. You can use the Windows built-in command line tool "diskpart" to manage partitions, but it is not easy to merge two partitions directly. Usually you need to delete one of the partitions and then expand the other partition.
The steps are as follows:
- Open the command prompt, enter diskpart, and press Enter.
- Enter list disk to view all hard disks and find the number of your external hard disk.
- Enter select disk X (X is the number of your external hard disk).
- Enter list partition to view the partitions and find the number of the partition you want to delete.
- Enter select partition Y (Y is the number of the partition you want to delete).
- Enter delete partition to delete the partition.
- Then, select the remaining partitions: select partition Z (Z is the number of the partition you want to expand).
- Enter the extend command to expand this partition.
Although you can merge two partitions of external hard disk in this way, you need to be particularly careful. Once you make a mistake, you may lose data. So, be sure to back up your data before the operation!