Partitioning a hard disk in Windows is something I’ve done dozens of times across different machines and Windows versions. The good news is that Windows has had solid built-in tools for this since Windows 7, and the process hasn’t changed dramatically. You can create, format, shrink, and delete partitions without downloading any third-party software.
What Is a Disk Partition and Why Should You Care
A partition is a logical division of your physical drive. Your drive might be one physical unit, but Windows can treat it as two or more separate sections. Each partition gets its own drive letter and acts like an independent disk.
Common reasons people partition drives:
- Separate the operating system from personal files
- Dual-boot two operating systems
- Keep a recovery section isolated
- Organize data by category (work, media, backups)
- Format one section without touching the other
When you format a partition, you’re writing a file system to it so Windows can store and read files there. The most common file system for Windows is NTFS. FAT32 works for older compatibility or USB drives, and exFAT is good for external drives used across Windows and Mac.

Tools Windows Gives You Built-In
You don’t need third-party software for most partitioning tasks. Windows ships with two solid tools:
| Tool | Type | Best For |
|---|---|---|
| Disk Management | GUI (Visual) | Beginners, visual overview |
| Diskpart | Command Line | Advanced tasks, scripting |
| Storage Settings (Win 11/10) | Settings App | Quick formatting only |
I’ll cover all three, starting with the easiest.
How to Open Disk Management on Any Windows Version
Disk Management is the go-to tool. Here’s how to launch it depending on your Windows version:
Windows 11 / 10: Right-click the Start button, then click Disk Management.
Windows 8 / 8.1: Press Win + X, then click Disk Management.
Windows 7: Click Start, right-click Computer, choose Manage, then click Disk Management in the left panel.
You can also open it on any version by pressing Win + R, typing diskmgmt.msc, and pressing Enter.
How to Create a New Partition in Windows
Step 1: Shrink an Existing Volume to Free Up Space
Before you can create a new partition, you need unallocated space on the disk. If your drive is fully used, you need to shrink an existing partition first.
- Open Disk Management
- Right-click the partition you want to shrink (usually C:)
- Click Shrink Volume
- Windows will calculate the maximum shrink amount
- Enter how much space you want to free (in MB)
- Click Shrink
A black bar labeled “Unallocated” will appear.
1 GB = 1024 MB. So if you want a 100 GB partition, enter 102400 in the MB field.
Step 2: Create the New Partition
- Right-click the Unallocated space
- Click New Simple Volume
- The New Simple Volume Wizard opens
- Click Next
- Set the size (leave it as-is to use all available space, or type a specific amount)
- Click Next
- Assign a drive letter (like D, E, or F)
- Click Next
Step 3: Format the Partition
Still inside the wizard:
- Choose Format this volume with the following settings
- File system: NTFS (recommended for most uses)
- Allocation unit size: Default
- Volume label: Name your partition (example: “Data” or “Backup”)
- Check Perform a quick format
- Click Next, then Finish
Windows will create and format the partition. It shows up in File Explorer within seconds.
How to Format an Existing Partition
If you already have a partition and want to wipe it and reformat it:
Using Disk Management
- Open Disk Management
- Right-click the partition you want to format
- Click Format
- Choose your file system (NTFS, FAT32, or exFAT)
- Give it a label if you want
- Check Perform a quick format (unless you want a full wipe, which takes much longer)
- Click OK and confirm
Warning: Formatting erases everything on that partition. Make sure you’re clicking the right one.
Using File Explorer (Quickest Method)
- Open File Explorer
- Right-click the drive letter you want to format
- Click Format
- Choose file system and label
- Click Start
This works on Windows 7 through 11. It’s the fastest way when you just need to reformat a drive quickly.
How to Delete a Partition
- Open Disk Management
- Right-click the partition
- Click Delete Volume
- Confirm the deletion
The space becomes “Unallocated” and can be used for a new partition or merged with an adjacent one.
You cannot delete the partition Windows is running on (usually C:). For that, you’d need a bootable USB.
Using Diskpart via Command Line
Diskpart gives you more control. It works on Windows 7, 8, 10, and 11 identically.
How to Open Diskpart
Press Win + R, type cmd, press Ctrl+Shift+Enter to open as Administrator. Then type:
diskpart
Press Enter. You’re now inside the Diskpart environment.
List All Disks
list disk
This shows all physical drives. Note the number of the disk you want to work with.
Select a Disk
select disk 0
Replace 0 with your disk number.
List Partitions
list partition
Create a Primary Partition
create partition primary size=50000
This creates a 50 GB partition (size is in MB).
Format the Partition
format fs=ntfs label="MyDrive" quick
Assign a Drive Letter
assign letter=D
Exit Diskpart
exit
For deeper command reference, Microsoft’s official Diskpart documentation covers every command in full detail: docs.microsoft.com/diskpart
File System Comparison: NTFS vs FAT32 vs exFAT
| Feature | NTFS | FAT32 | exFAT |
|---|---|---|---|
| Max file size | 16 TB | 4 GB | 128 PB |
| Max partition size | 256 TB | 8 TB | 128 PB |
| Windows support | All versions | All versions | Win 7 SP1+ |
| Mac read/write | Read-only by default | Yes | Yes |
| Best use | Internal drives, OS | Legacy USB, older devices | External drives, USB |
| Security & permissions | Yes | No | No |
NTFS is the right call for internal Windows drives. Use exFAT for external drives you share between Windows and Mac. Only use FAT32 when dealing with older devices or specific compatibility needs.
Partition Types Explained
When you create partitions, Windows might mention different types. Here’s what they mean:
Primary partition: A standard, bootable partition. A disk can have up to 4 primary partitions on an MBR disk.
Extended partition: A container used on MBR disks that holds logical drives. You create it when you need more than 4 partitions.
Logical drive: Lives inside an extended partition. Not directly bootable.
GPT disk: Modern disks use GPT instead of MBR. GPT supports up to 128 primary partitions and is required for drives larger than 2 TB and for UEFI boot.
To check whether your disk is MBR or GPT, open Disk Management, right-click the disk label (not a partition), and click Properties > Volumes tab.
Windows 11 Specific: Storage Settings
Windows 11 added a simpler formatting option through the Settings app. It’s not a replacement for Disk Management but works for basic formatting:
- Go to Settings > System > Storage
- Click Advanced storage settings
- Click Disks & volumes
- Select the volume
- Click Properties
- Click Format
This is useful if you prefer the modern UI over Disk Management’s older look.
Common Partition Errors and How to Fix Them
“There is not enough space available on the disk”
This happens when Windows can’t shrink the volume because unmovable files (like the pagefile or hibernation file) are blocking the space.
Fix: Disable hibernation temporarily, run a disk defrag (only on HDD, not SSD), then try shrinking again.
Disable hibernation: Open Command Prompt as admin and run:
powercfg /h off
Re-enable after shrinking:
powercfg /h on
“The volume you have selected may be corrupted”
Run CHKDSK first:
chkdsk C: /f /r
Restart when prompted. Then try your partition operation again.
Diskpart Says “Access Denied”
Make sure you opened Command Prompt as Administrator. Regular CMD won’t work with Diskpart.
Can’t Format Drive C
You can’t format the system drive while Windows is running on it. Boot from a Windows installation USB and use the partition tool in setup, or use a live Linux USB with GParted.
Partitioning Best Practices
A few things I always keep in mind when partitioning:
- Back up data first. Any partitioning operation carries risk. Even if you’re just shrinking, have a backup.
- Leave buffer space. Don’t fill partitions to 100%. NTFS needs some free space to operate efficiently. Keep at least 10-15% free.
- Name your partitions clearly. “Data,” “Backup,” “Games” beats “New Volume” every time.
- Use GPT for new drives. If your PC supports UEFI (almost all made after 2012 do), initialize new drives as GPT.
- Avoid resizing the system partition often. Shrinking C: repeatedly can fragment files and cause issues.
- SSD partitioning works fine. SSDs don’t need alignment tweaks in modern Windows since Vista and later handle 4K alignment automatically.
Partitioning Differences Across Windows Versions
| Feature | Win 7 | Win 8/8.1 | Win 10 | Win 11 |
|---|---|---|---|---|
| Disk Management | Yes | Yes | Yes | Yes |
| Diskpart | Yes | Yes | Yes | Yes |
| Storage Settings UI | No | No | Partial | Yes |
| GPT disk support | Yes | Yes | Yes | Yes |
| ReFS file system | No | No | Pro/Enterprise | Pro/Enterprise |
| Storage Spaces | No | Yes | Yes | Yes |
The core tools haven’t changed much since Windows 7. If you know Disk Management on Windows 7, you already know it on Windows 11.
How to Extend a Partition
If you deleted an adjacent partition or have unallocated space right next to a partition, you can extend it.
- Open Disk Management
- Right-click the partition you want to extend
- Click Extend Volume
- The wizard shows how much space is available
- Choose how much to add
- Click Next and Finish
Important: The unallocated space must be directly to the right of the partition you’re extending. If it’s not adjacent, Disk Management won’t let you extend it through the GUI. In that case, use Diskpart or a third-party tool like MiniTool Partition Wizard.
Conclusion
Creating and formatting hard disk partitions in Windows doesn’t require third-party tools or advanced knowledge. Disk Management handles almost everything visually, and Diskpart gives you full control from the command line. The steps are nearly identical from Windows 7 through Windows 11.
The main things to remember: back up your data before doing anything, choose NTFS for internal drives, use exFAT for external drives, and make sure you have unallocated space before creating a new partition. Once you’ve done it a couple of times, it becomes second nature.
Frequently Asked Questions
Can I partition my hard drive without losing data already on it?
Yes, but only with certain operations. Shrinking a partition to create unallocated space doesn’t delete your existing data, it just reduces the size of that partition. Creating a new partition in that unallocated space also doesn’t touch your existing files. However, formatting a partition wipes everything on that specific partition. Deleting a partition destroys all data on it. So the safe operations are shrink and create new. Anything involving format or delete will erase data on the affected partition.
My C drive is almost full but Windows won’t let me shrink it. Why?
Windows can’t move certain system files like the page file, hibernation file, or system restore points during a shrink operation. These files act as anchors and prevent shrinking past their location. I usually fix this by disabling hibernation with powercfg /h off, turning off system restore temporarily, and running a defrag on the drive before trying to shrink again. On SSDs, defrag doesn’t help since files aren’t physically moved the same way, but disabling hibernation usually frees up enough space.
What happens if I convert my disk from MBR to GPT?
Converting from MBR to GPT removes all existing partitions and data on that disk, unless you use a tool like MBR2GPT which Windows 10 and 11 include. MBR2GPT can convert a system disk non-destructively, but it requires your PC to support UEFI boot mode. Run mbr2gpt /validate first to check compatibility before attempting the conversion. For non-system drives, it’s usually faster to just back up the data, delete all partitions, convert the disk type in Disk Management, and restore your data.
Is it safe to partition an SSD the same way as an HDD?
Completely safe. Modern Windows versions (Vista and later) automatically align SSD partitions to 4K sector boundaries, which is what SSDs need to perform well. You don’t need to do anything special. The process is identical. The one thing to keep in mind is that SSDs don’t benefit from defragmentation, so skip that step if someone suggests it as part of the shrink process. Windows also handles SSD TRIM automatically, so partitioning won’t hurt the drive’s lifespan.
Can I merge two partitions into one without third-party software?
Not directly with Disk Management if they’re both formatted partitions. Disk Management can only extend a partition into adjacent unallocated space. To merge two existing formatted partitions, you’d need to back up the data from one, delete that partition, and extend the other into the freed-up unallocated space. Alternatively, Diskpart can handle this from the command line, but the process still requires deleting one partition first. Third-party tools like MiniTool Partition Wizard can do live merging without deleting, but that’s the only way to avoid manual data migration.
