A complete step-by-step guide to splitting a hard drive or SSD into multiple partitions using built-in Windows tools: Disk Management, DiskPart, and PowerShell.
Partitioning a drive means dividing one physical disk into separate logical sections called partitions or volumes. Each partition can have its own drive letter, file system, label, and purpose. For example, one SSD can contain a system partition C: for Windows and a separate data partition D: for documents, downloads, games, or backups.
Windows 10 and Windows 11 include several built-in tools for partition work. The easiest one is Disk Management (diskmgmt.msc). Advanced users can also use DiskPart in Command Prompt or PowerShell storage cmdlets.
Partitioning is useful when you want to organize data separately from Windows, keep large games or media files away from the system drive, prepare a separate partition for backups, or install another operating system. It can also make reinstalling Windows easier because personal files can be stored on a different partition.
Use separate drive letters for Windows, documents, games, media, or work files.
Keep personal files on a data partition while reinstalling Windows on C:.
Create, shrink, extend, format, and delete volumes without third-party software.
Disk partitioning is usually safe when done correctly, but mistakes can delete data or make Windows unbootable. Before changing partitions, take a few minutes to check the following items.
There is no universal perfect layout, but the following practical recommendations work well for most home and office PCs.
| Drive Size | Suggested C: Partition | Suggested Data Partition | Notes |
|---|---|---|---|
| 256 GB | 180-220 GB | Remaining space | Keep enough room for Windows updates and installed apps. |
| 512 GB | 200-300 GB | Remaining space | A comfortable layout for Windows, programs, and personal files. |
| 1 TB or larger | 250-400 GB | Remaining space | Good for separating games, media, archives, and work data. |
The simplest way to partition a disk is through Disk Management, a built-in Windows storage utility. It works almost the same way in Windows 10 and Windows 11.
Win + X.You can also open it with the Run dialog:
Run commanddiskmgmt.msc
If your PC has one large C: drive and you want to create a new D: drive, the usual process is: shrink the existing partition, then create a new volume from the unallocated space.
After the operation finishes, Disk Management will show a new black area labeled Unallocated. This space is not usable yet. You must create a new volume on it and format it.
102400 MB for about 100 GB, 204800 MB for about 200 GB, or 512000 MB for about 500 GB.
The new partition will appear in File Explorer under This PC with the drive letter you selected.
Sometimes a disk already contains unallocated space. This can happen after deleting a partition, installing a new disk, shrinking a volume, or migrating Windows from another drive.
The file system determines how Windows stores files on the partition. For most internal disks, NTFS is the right choice.
| File System | Best For | Limitations |
|---|---|---|
| NTFS | Windows system drives, internal HDDs, SSDs, large files, permissions, compression, encryption. | Limited write support on some non-Windows systems without extra tools. |
| exFAT | External drives, USB flash drives, large files, compatibility with Windows and many other devices. | No Windows permissions or advanced NTFS features. |
| FAT32 | Older devices, firmware tools, small USB drives. | Cannot store single files larger than 4 GB. |
When you install a new internal drive, Windows may detect it as Unknown and Not Initialized. Before creating partitions, you need to initialize the disk.
For a secondary drive used only for files or games, one large partition is often simplest. Several partitions may be useful when you want separate areas for backups, media, virtual machines, work projects, or dual-boot installation.
DiskPart is a powerful command-line tool for managing disks, partitions, and volumes. It is useful when Disk Management is unavailable, when you are working from Windows Recovery Environment, or when you need precise control.
clean on the wrong drive can erase data. Always verify disk and volume numbers before running destructive commands.
Use this example when the disk already has unallocated space and you want to create a new NTFS partition.
Command Prompt as Administratordiskpart
list disk
select disk 1
list partition
create partition primary size=102400
format fs=ntfs quick label="Data"
assign letter=D
exit
In this example, size=102400 creates a partition of approximately 100 GB. If you omit the size parameter, DiskPart uses all available unallocated space.
To shrink an existing volume and create free space, use the following workflow:
DiskPart shrink examplediskpart
list volume
select volume C
shrink desired=102400
exit
The command above attempts to shrink the selected volume by about 100 GB. After shrinking, you can create a new partition from the unallocated space using Disk Management or additional DiskPart commands.
PowerShell can also initialize disks, create partitions, assign drive letters, and format volumes. This method is useful for administrators and repeatable setups.
PowerShell as AdministratorGet-Disk
PowerShell exampleInitialize-Disk -Number 1 -PartitionStyle GPT
New-Partition -DiskNumber 1 -UseMaximumSize -DriveLetter D
Format-Volume -DriveLetter D -FileSystem NTFS -NewFileSystemLabel "Data" -Confirm:$false
Replace 1 with the correct disk number and D with the desired drive letter. Check the disk number carefully before running the commands.
If a partition becomes too small, you may be able to extend it. The built-in Disk Management tool can extend a basic volume only when suitable unallocated space is available directly after that partition on the same disk.
Deleting a partition turns it into unallocated space. This can be useful when you want to rebuild the disk layout, remove an unused data partition, or prepare space for extending another volume.
When initializing a new disk, Windows asks whether to use MBR or GPT. For modern Windows 10 and Windows 11 PCs, GPT is usually the best choice.
| Feature | MBR | GPT |
|---|---|---|
| Best for | Older BIOS systems and legacy compatibility. | Modern UEFI systems, Windows 10, Windows 11, and large drives. |
| Large drive support | Limited for drives larger than 2 TB. | Designed for very large disks. |
| Partition flexibility | Limited primary partition layout. | Supports many partitions without the same legacy restrictions. |
| Boot mode | Typically BIOS / Legacy boot. | Typically UEFI boot. |
Windows may be unable to shrink a partition beyond unmovable files such as the page file, hibernation file, restore point data, or system metadata. Try temporarily disabling hibernation, reducing restore point storage, running Disk Cleanup, and restarting Windows before trying again.
Disable hibernation temporarilypowercfg /h off
After resizing, you can enable hibernation again:
Enable hibernation againpowercfg /h on
This usually means the unallocated space is not directly next to the partition you want to extend. Disk Management cannot move partitions. You may need to delete the partition between them, back up and rebuild the layout, or use specialized partition software.
Open Disk Management and check whether the partition has a drive letter. If not, right-click the volume, choose Change Drive Letter and Paths, click Add, and assign an available letter.
Right-click the disk label on the left side of Disk Management and choose Online. If the disk goes offline again, check cables, USB adapters, storage drivers, and the drive health status.
Do not format the partition if it contains important files. A format operation removes the file system structure. First check the drive on another PC, inspect SMART status, and consider data recovery before making changes.
Yes, you can usually shrink the C: drive in Disk Management without deleting files. However, any partition operation carries some risk, so you should back up important data first.
It is optional. Splitting an SSD can help organize files and make Windows reinstalls cleaner, but it does not normally improve performance. Many users prefer one system partition and a separate data partition.
For comfortable long-term use, leave at least 150-250 GB for the Windows partition if the disk size allows it. Heavy software, games, virtual machines, and developer tools may require more.
Disk Management does not provide a direct “merge” button. Usually you must back up data, delete one partition, and extend the neighboring partition into the unallocated space.
Windows may encounter unmovable files near the end of the partition. Page file data, hibernation data, restore points, and metadata can limit the shrink amount.
Yes, GPT is the recommended partition style for modern UEFI-based Windows 11 systems and large drives. MBR is mainly for older legacy BIOS systems.
The easiest and safest way to partition a drive in Windows 10 and Windows 11 is to use Disk Management. Shrink an existing volume, create a new simple volume from the unallocated space, assign a drive letter, and format it as NTFS. For new empty drives, initialize the disk as GPT, then create and format one or more partitions.
Use DiskPart or PowerShell only when you need advanced control or automation. Before deleting, formatting, shrinking, or extending partitions, always check that you selected the correct disk and keep a current backup of important files.