A practical guide to combining two partitions into one larger volume using built-in Windows tools, with backup tips, limitations, and safe alternatives.
Yes, you can merge disk partitions in Windows, but the built-in tools do not offer a simple one-click "Merge" button. In most cases, merging partitions means deleting one partition to turn it into unallocated space, then extending the neighboring partition into that space.
For example, if your disk contains C: and D:, and you want one large C: drive, the usual built-in method is:
D:.D: partition.C: into the newly created unallocated space.Merging partitions can be useful when one volume is running out of space while another has plenty of free storage. It is also common after upgrading an SSD, removing an unused recovery or data partition, or simplifying a disk layout that was previously split into too many volumes.
Avoid merging partitions if one of them contains a manufacturer recovery environment, BitLocker recovery data, a Linux installation, boot files, or another operating system. Deleting the wrong partition may make Windows unbootable or remove the ability to restore the computer from factory recovery media.
Partition operations are sensitive because they modify the disk structure. Even when the procedure is simple, a power failure, wrong disk selection, or mistaken delete operation can cause data loss. Spend a few minutes checking the disk layout before making changes.
If you are going to delete D: and extend C:, copy everything from D: first. Use an external SSD/HDD, a network share, OneDrive, Google Drive, or another internal disk. Do not store the backup on the same partition that will be deleted.
Windows Disk Management can extend a volume only when the unallocated space is located immediately to the right of that volume on the same physical disk. If the partitions are not adjacent, the "Extend Volume" option may be unavailable.
C: into deleted D: space if the layout is C: โ D:. It usually cannot extend C: if the layout is C: โ Recovery Partition โ D: without first moving or removing the partition between them.
If your computer has more than one drive, confirm disk numbers and sizes carefully. Disk 0 is often the system drive, but this is not guaranteed. External USB drives, NVMe SSDs, SATA HDDs, and virtual disks can all appear in the same list.
If BitLocker is enabled, save your recovery key and consider suspending BitLocker protection before changing partitions. After the operation, resume protection and verify that Windows starts normally.
Disk Management is the easiest built-in graphical tool for merging adjacent partitions. It works in Windows 10 and Windows 11 and is suitable for most home users when the target layout is simple.
Win + X or right-click the Start button.You can also press Win + R, type diskmgmt.msc, and press Enter.
Decide which partition will remain after merging. Usually, this is the partition that needs more space, such as C: or a main data drive. Make sure the partition you want to delete is directly to the right of the one you want to extend.
C:.After the wizard finishes, Windows will show one larger partition. File Explorer should display the updated size immediately.
Windows 11 and recent Windows 10 builds include modern storage management pages in the Settings app. These pages can show disks, volumes, and partition details, but the classic Disk Management tool is still more reliable for many resize operations.
Win + I to open Settings.Depending on your Windows version, you may be able to view properties, change drive letters, format volumes, or resize some partitions from this interface. If the required resize option is not available, open classic Disk Management instead.
diskmgmt.msc remains the clearest built-in graphical method.
DiskPart is a built-in command-line partitioning tool. It is powerful, but it does not protect you from selecting the wrong disk or volume. Use it only if you are comfortable with command-line tools and have a verified backup.
The following example assumes you want to delete D: and extend C:. Replace the volume numbers with the correct numbers from your own computer.
Win + X and choose Terminal (Admin), Windows PowerShell (Admin), or Command Prompt (Admin).diskpart.DiskPartdiskpart
list volume
After you identify the volume you want to delete, select it and remove it:
Delete the second partitionselect volume D
delete volume
Then select the partition you want to enlarge and extend it:
Extend the remaining partitionselect volume C
extend
exit
select volume followed by delete volume can remove the wrong partition. Always check volume size, letter, file system, and label before confirming the command.
DiskPart is useful in recovery environments, Windows setup, remote administration, and scripted deployment. For a normal desktop computer, Disk Management is usually safer because the graphical layout helps you see exactly what will be changed.
Built-in Windows tools do not truly merge two populated partitions while preserving files on both. Disk Management and DiskPart can extend a partition only into unallocated space. That means one partition must be deleted first, and the files from that partition must be backed up manually.
This is the safest method because you control the backup yourself and can verify that files are readable before modifying partitions.
Some third-party partition managers advertise a direct "merge partitions" feature. These tools may move files automatically and adjust the partition layout without manually deleting a volume first. However, the risk is not zero. A full backup is still strongly recommended before using any partition manager.
Merging the C: drive with another partition is one of the most common requests because Windows, apps, browser caches, and updates can quickly fill the system partition. The process is possible, but only under the right disk layout.
If your disk layout is C: โ D:, you can back up D:, delete D:, and extend C:. This is the simplest and most reliable scenario for built-in Windows tools.
Many modern Windows installations place a recovery partition after C:. If your layout is C: โ Recovery โ D:, Disk Management will not be able to extend C: into the space from D: because the unallocated space is not directly next to C:.
In that situation, you have three practical options:
The most common reason is that the unallocated space is not directly to the right of the partition you want to extend. Disk Management cannot move partitions, so it cannot jump over another volume, recovery partition, or reserved partition.
You cannot merge normal basic partitions from two different physical disks into one standard volume using Disk Management. Dynamic disks and Storage Spaces can combine disks in some configurations, but they are not the same as merging two ordinary partitions and are usually not recommended for beginners.
Disk Management can extend NTFS volumes more reliably than FAT32 or other file systems. If the partition is FAT32, exFAT, RAW, or from another operating system, some options may be unavailable. Back up the data before changing the file system or deleting the partition.
EFI System Partitions, Microsoft Reserved Partitions, OEM recovery partitions, and some hidden partitions are protected. Windows may not allow normal deletion through Disk Management. This protection exists because deleting these partitions can break boot or recovery functionality.
If you are trying to shrink one partition first and then extend another, remember that unallocated space must appear in the correct position. Shrinking D: may create unallocated space after D:, not between C: and D:, which still prevents extending C:.
| Method | Best For | Data Loss Risk | Difficulty |
|---|---|---|---|
| Disk Management | Adjacent partitions on the same disk | High if you delete without backup | Easy |
| Settings โ Disks & volumes | Viewing layout and basic storage tasks | Depends on selected operation | Easy |
| DiskPart | Advanced users, recovery mode, scripts | High if commands are wrong | Medium to hard |
| Third-party partition manager | Non-adjacent partitions or moving partitions | Medium; backup still required | Medium |
| Backup and clean reinstall | Complex layouts, system disk redesign | Low if backup is complete | Hard |
For most users, Disk Management is the best first option. It is built into Windows, visual, and relatively easy to understand. Use DiskPart only when you need command-line control, and consider third-party tools only when Windows cannot move or extend partitions in the required layout.
D: must be deleted first. To preserve files, copy them to a safe backup location before deleting D:, then move them back after extending C:.
The safest built-in way to merge partitions in Windows 10 or Windows 11 is to back up the partition you no longer need, delete it in Disk Management, and then extend the neighboring partition into the unallocated space. This works best when the partitions are adjacent and located on the same physical disk.
If the partitions are separated by a recovery partition or another volume, Disk Management may not be enough. In that case, use a trusted partition manager, redesign the disk layout during a clean installation, or keep the partitions separate and move personal files manually.
Best built-in tool: Disk Management (diskmgmt.msc)
Required condition: unallocated space must be directly to the right of the partition you want to extend
Biggest risk: deleting a partition without backing up files first
Best for advanced users: DiskPart from an elevated terminal
Best safety rule: create a backup before changing partitions