How to Partition and Format a Drive in Windows 11
The Problem
You have a new drive that does not appear in File Explorer, or you want to split one big drive into separate volumes, or an external drive is using the wrong file system and refuses files over 4 GB.
All of it happens in Disk Management, with diskpart as the fallback when the graphical tool refuses. The mechanics take five minutes. The important part is knowing which operations destroy data and which do not.
Formatting erases everything on that partition. Shrinking and extending do not, but any partition work carries risk on a drive with existing data. Back up first: set up automatic backups. Drive not detected at all? Start with fix a corrupted USB or external drive.
Before You Start: What Each Operation Does
- Initialize — writes a partition table to a brand-new drive. Safe on a new drive, destructive on one with data.
- Shrink — takes free space off the end of a partition. Existing files are kept.
- Extend — grows a partition into adjacent unallocated space to its right. Existing files are kept.
- New Simple Volume — creates and formats a partition in unallocated space.
- Format — erases everything in that partition and lays down a fresh file system.
- Delete Volume — removes the partition and everything in it.
Step 1: Back Up and Identify the Right Disk
Choosing the wrong disk number is the one mistake that cannot be undone.
- Back up anything on the drive you are about to touch.
- Press
Win + X→ Disk Management. - Identify your target by size and label, not by disk number alone.
- Note which disk holds C:, the EFI System Partition, and any Recovery partition — never touch those.
- Unplug other external drives so they cannot be selected by accident.
Step 2: Initialize a Brand-New Drive
A new drive shows as Not Initialized with black unallocated space.
- Right-click the disk label on the left (for example Disk 1) → Initialize Disk.
- Choose GPT (GUID Partition Table). Use MBR only for drives under 2 TB that must work in very old systems.
- Click OK. The disk now shows as Online with unallocated space.
Step 3: Create a Partition
- Right-click the black Unallocated space → New Simple Volume.
- Click through the wizard. For the whole drive, accept the default size.
- Assign a drive letter.
- Choose the file system — see Step 5 — and give the volume a label such as
DataorBackup. - Leave Perform a quick format ticked unless you suspect the drive is faulty; a full format also surface-tests it, which takes hours.
- Click Finish. The drive appears in File Explorer.
Step 4: Split an Existing Drive
- Right-click the partition you want to split → Shrink Volume.
- Windows reports the maximum it can reclaim. It is often less than the free space because immovable system files sit near the end of the volume.
- Enter the amount to shrink in MB (50 GB = 51200 MB) → Shrink.
- Right-click the resulting unallocated space → New Simple Volume and follow Step 3.
- If shrink offers far less than expected, temporarily disable hibernation (
powercfg /h offin Terminal (Admin)) and System Restore, shrink, then re-enable both.
Step 5: Choose the Right File System
- NTFS — internal Windows drives and large external drives used only with Windows. Supports permissions, compression, and encryption.
- exFAT — external drives shared between Windows, macOS, cameras, and TVs. No file-size limit in practice, no permissions.
- FAT32 — only for small USB sticks that must work in old devices or car stereos. 4 GB maximum file size.
Leave Allocation unit size on Default unless you have a specific reason to change it.
Step 6: Format an Existing Drive
This erases everything on that partition.
- In Disk Management, right-click the partition → Format.
- Set the label, file system, and quick-format option.
- Click OK and confirm the warning.
- For a quick wipe of a USB stick, right-click it in File Explorer → Format instead — same result, fewer steps.
- Formatting is not secure erasure. If you are selling or donating the machine, see wipe your PC before selling or donating.
Step 7: Extend a Partition
- Extending only works into unallocated space immediately to the right of the partition in Disk Management's layout view.
- Right-click the partition → Extend Volume → accept the maximum → Finish.
- If Extend Volume is greyed out, the free space is in the wrong place or separated by a recovery partition. You will need to move or delete the partition in between — back up first, since that is destructive.
Step 8: Use diskpart When Disk Management Refuses
Some drives — particularly USB sticks with hidden partitions, or drives previously used in a Mac or a NAS — cannot be fixed graphically.
- Open Terminal (Admin) and type:
diskpart - List the disks:
list disk - Check the sizes carefully, then select yours:
select disk 1 - Confirm you selected the right one:
detail disk - Wipe the partition table:
clean - Create and format:
create partition primary format fs=ntfs quick assign exit
clean erases the entire selected disk instantly with no confirmation prompt. Run detail disk and read the model name before you type it.
Step 9: Verify the Result
- Open File Explorer and confirm the new volume appears with the expected capacity.
- Copy a large file to it and open it, to confirm it is genuinely writable.
- Check the drive is healthy before you trust data to it: check SSD and hard drive health.
What Not to Do
- Don't touch the EFI, Recovery, or OEM partitions. They are small, unlettered, and required for booting and reset. See fix "There was a problem resetting your PC" for what breaks when the recovery partition goes missing.
- Don't use FAT32 for a drive holding video files. The 4 GB limit will stop you mid-copy.
- Don't run
cleanwithout confirming the disk number. There is no undo and no prompt. - Don't rely on a quick format as secure deletion. The data is still recoverable.
Still Not Working?
If Disk Management shows the drive as Unallocated and diskpart errors on clean, the drive is likely failing — check it with SSD and hard drive health. If a drive holds data you need but will not mount, stop formatting and read how to recover deleted files before anything else.
Related: free up disk space when C: is full and how to choose an SSD for your PC.
Related guides
How to Fix Slow File Transfer Speeds in Windows 11
Copying files at a crawl or the transfer speed dropping to zero? Fix USB, network, and drive bottlenecks slowing Windows 11 file copies with these step-by-step fixes.
How to Transfer Files from an Old PC to a New PC
Moving to a new Windows 11 PC? Transfer files, browser data, and settings safely with an external drive, network share, or cloud sync, step by step.
How to Repair Windows 11 System Files with SFC and DISM
Learn how to run sfc /scannow and DISM to repair corrupted Windows 11 system files — the correct order, what each command does, and what to do if they fail.
How to Factory Reset Windows 11
Reset Windows 11 to factory settings the right way—keep your files or wipe everything, choose cloud or local reinstall, and reset even if the PC won't boot.
How to Fix Audio Services Not Responding
Windows 11 troubleshooter reporting "Audio services not responding"? Restart the audio services, reset permissions, and get sound back with these step-by-step fixes.