Skip to content
How‑To Guides

Windows 11 Disk Management: Partitions and Drive Setup

Windows 11 Disk Management lets you create, resize, format, and delete partitions on internal and external drives without third-party software. This guide covers initialising new drives, creating and formatting partitions, shrinking and extending volumes, fixing drives not showing up, and understanding drive letters and volume types.

Windows 11 Disk Management: Partitions and Drive Setup

Disk Management is Windows 11’s graphical tool for partitioning drives, formatting them, assigning drive letters, and converting between disk types. Most users encounter it in two situations: setting up a new internal or external drive for the first time, or troubleshooting a drive that isn’t appearing where they expect it to. This guide covers both. For a broader walkthrough, our Complete Guide to Windows 11 is a good next read.

Opening Disk Management

Win+X → Disk Management. Or: Win+R → diskmgmt.msc. The interface shows two views: the top pane lists all volumes with their sizes and properties; the bottom pane shows all physical disks with a visual representation of each partition’s relative size. Both views are useful — the top for finding a specific volume quickly, the bottom for understanding the physical layout of each drive.

New drive not showing up — the initialisation step

A brand-new drive often doesn’t appear in File Explorer because Windows requires initialisation before it can be formatted and used. When a new unformatted drive is connected: Disk Management shows it in the bottom pane with the label “Unknown” and “Not Initialised.” A prompt may appear immediately when Disk Management opens; if not, right-click the drive label on the left → “Initialize Disk.”

Initialisation asks for a partition style: MBR or GPT. Choose GPT for any drive on a modern PC. MBR is a 30-year-old standard with a 2TB size limit and other constraints. GPT is the correct choice for drives used with Windows 10 and 11; the only reason to choose MBR is compatibility with very old systems that don’t support GPT booting.

Creating a partition and formatting

After initialisation: right-click the “Unallocated” space on the drive → “New Simple Volume” → the wizard opens.

  1. Volume size: set how large the partition should be. For a single partition using the entire drive: leave it at the maximum.
  2. Drive letter: assign a letter. Choose any unused letter. Letters A and B are traditionally reserved (legacy floppy drives); C is the system drive; D onwards are typically data drives. The choice of letter is arbitrary — use whatever makes sense for your organisation.
  3. File system: NTFS for any Windows drive. FAT32 for drives shared with older devices (game consoles, cameras) but limited to 4GB maximum file size. exFAT is the middle ground — large file support without Windows-only limitations, good for external drives shared between Windows and macOS.
  4. Allocation unit size: leave at “Default” unless you have a specific reason to change it (large databases or video editing might benefit from larger allocation units).
  5. Volume label: a name for the drive as it appears in File Explorer. Optional but useful for multi-drive setups.

Quick format vs full format: Quick format marks the space as available without verifying every sector. Full format writes to every sector to check for bad sectors — slower (hours for large drives) but recommended for older or suspicious drives. For a new drive from a reputable manufacturer: quick format is fine.

Resizing partitions

Disk Management can shrink or extend partitions, with important limitations:

Shrinking: right-click a partition → “Shrink Volume” → enter the amount to shrink in MB → Shrink. Windows only shrinks to the point where data is stored — if unmovable files (like the pagefile or system protected files) are near the middle of the drive, shrinking may produce less space than you expect. The maximum shrink shown is the theoretical limit; in practice, defragmenting first and ensuring no protected files are scattered through the volume allows more shrinking.

Extending: right-click a partition → “Extend Volume” → only works if there’s unallocated space immediately adjacent to the partition on the right side of the partition map. If the free space is not adjacent or is on the left: Disk Management can’t extend into it. For non-adjacent space or left-side space: third-party partition managers (MiniTool Partition Wizard free edition, AOMEI Partition Assistant) handle this without data loss.

Drive letter management

Right-click any volume → “Change Drive Letter and Paths” → Add, Change, or Remove. Changing a drive letter may cause issues if applications have installed to that drive and store the path with the old letter — they’ll point to a location that no longer exists. For empty drives or drives with no application paths stored: letter changes are safe and immediate.

Removing a drive letter makes the volume inaccessible from File Explorer (it still exists but has no access path). Adding a path instead of a drive letter: “Add” → “Mount in the following empty NTFS folder” → this mounts the volume inside a folder on another drive (folder junction). Useful for adding a large drive’s space to an existing drive structure without consuming a drive letter.

Our guide on Windows 11 storage management covers managing files and space on existing drives, and our guide on Windows 11 Storage Spaces covers pooling multiple drives for redundancy. For advanced partition operations (moving partitions, converting between MBR/GPT without reformatting), Microsoft’s Disk Management documentation covers the tool’s full capabilities and limitations alongside the diskpart command-line alternative.

Converting disk types

Right-click the disk label (not a partition) → two conversion options may appear depending on current disk type:

  • Convert to Dynamic Disk: allows spans across multiple drives and other advanced volume types. Generally not recommended for client machines — Dynamic disks have more failure modes and are less recoverable. GPT basic disks are preferred for individual drives.
  • Convert to GPT/MBR: only available on empty disks (no partitions). For occupied disks: MBR2GPT (command-line tool built into Windows) can convert system disks without data loss; non-system disks require backup and reformatting.

Deleting partitions and volumes

Right-click a volume → “Delete Volume.” All data on that partition is permanently erased immediately. There’s no undo and no Recycle Bin — deletion is immediate and complete. Confirm the correct volume is selected (volume name, drive letter, and size) before clicking Delete.

For a drive being repurposed or sold: after deleting all partitions, right-click the unallocated space → New Simple Volume → format with quick format removes the partition table entry. For a drive being sold: a full format or a third-party secure wipe tool (DBAN, Eraser) overwrites the actual data — partition deletion alone doesn’t wipe the underlying data that specialised recovery software could retrieve.

Diskpart — the command-line alternative

Some operations aren’t available in the GUI — particularly wiping a disk completely, cleaning a protected system partition, or scripting disk operations. The diskpart command-line tool handles these:

diskpart
list disk                    # shows all physical disks
select disk [number]         # selects a disk
list partition               # shows partitions on selected disk
clean                        # removes ALL partitions from selected disk (irreversible)
create partition primary      # creates a primary partition
format fs=ntfs quick         # formats the selected partition
assign letter=D              # assigns a drive letter

The clean command is the most important to know — it completely wipes the partition table from the selected disk, making all data inaccessible. Essential for preparing drives for specific configurations that Disk Management can’t create, and for clearing protected partitions that the GUI refuses to touch. It’s also irreversible and instant, so the sequence “select disk [correct number] → clean” requires absolute confidence in which disk is selected.

Task Tool to use
Format new drive Disk Management
Create/delete partitions Disk Management
Resize partition (adjacent free space) Disk Management
Resize partition (non-adjacent space) Third-party (MiniTool, AOMEI)
Change drive letters Disk Management
Completely wipe a disk diskpart (clean command)
Convert MBR to GPT (no data loss, system disk) MBR2GPT command-line tool
Secure erase for drive sale/disposal Third-party (DBAN, manufacturer tool)

Disk Management handles the majority of everyday partition tasks for most users. Its limitations (non-adjacent partition resizing, left-side extension, moving partitions) push you to third-party tools for specific scenarios. Knowing the limitation exists — rather than assuming the GUI can do everything — saves time when an operation isn’t available and points to the right alternative tool without confusion.

Volume types in Disk Management

When creating partitions on a basic disk, three volume types are available:

  • Simple volume: a single partition on one physical disk. The standard choice for most drives — entire drive capacity in one accessible unit.
  • Spanned volume: combines space from multiple physical disks into one logical volume. If any one disk fails, all data in the spanned volume is lost. Not recommended for important data; Storage Spaces provides similar functionality with redundancy options.
  • Striped volume: similar to RAID 0 — data is written across two or more disks simultaneously for performance. No redundancy; losing either disk loses all data. Disk Management’s implementation is software-based and slower than hardware RAID.

For the vast majority of personal computing: simple volumes on individual drives (plus Storage Spaces for redundancy) is the correct approach. Spanned and striped volumes in Disk Management are legacy Dynamic Disk features with minimal advantages over their modern equivalents.

Troubleshooting common Disk Management issues

Some situations that cause confusion:

  • Drive appears in Disk Management but not File Explorer: the drive has no partition or no drive letter assigned. Right-click the unallocated space → New Simple Volume, or right-click the volume → Change Drive Letter and Paths → assign a letter.
  • “You cannot shrink a volume beyond the point where any unmovable files are located”: unmovable files (pagefile, hibernation file, system protected files) are preventing full shrinkage. Temporarily disable the pagefile (System Properties → Advanced → Performance → Settings → Virtual Memory → No paging file → OK → restart), shrink, then re-enable.
  • Volume shows as “RAW” instead of NTFS: the filesystem is corrupted or the partition table is damaged. Data recovery tools (Recuva, Puran File Recovery) may be able to recover files before reformatting. Don’t format a RAW volume until you’ve attempted recovery if the data matters.
  • Can’t initialise disk — “The disk is offline because it has a signature collision”: this happens with cloned drives that have the same disk signature. Right-click the offline disk → Online, then re-initialise.

EFI System Partition and recovery partitions

On GPT disks running Windows 11: Disk Management shows several partitions that aren’t assigned drive letters and appear without labels. These include:

  • EFI System Partition (ESP): typically 100-500MB, contains bootloaders. Don’t delete this — it’s required for the PC to boot Windows.
  • Microsoft Reserved Partition (MSR): small partition (16-128MB) reserved by Windows for internal use.
  • Recovery partition: typically 500MB-1GB, contains Windows Recovery Environment. Required for Reset this PC and other recovery operations.
  • Windows partition: the main partition containing Windows and your files.

Disk Management protects most of these from deletion via the GUI. diskpart can delete them, but doing so causes Windows to fail to boot or lose recovery capability. Never delete these partitions unless you explicitly understand the consequence and have an alternative recovery method available.

Best practices for partition management

  • Back up before any partition operation — even “safe” operations like shrinking have rare failure modes. A backup removes the risk from becoming a catastrophe.
  • Double-check drive selection before deleting — confirm the drive letter, name, and size matches the target before clicking Delete or running diskpart clean.
  • Leave free space at the end of SSDs — some older SSD firmware performs better with 10-20% unallocated space. On modern SSDs this is less critical, but leaving a partition slightly smaller than the drive’s maximum allows some buffer.
  • Use GPT for all new drives — there’s no reason to use MBR on any modern system. GPT supports larger drives, more partitions, and better recovery options.

Disk Management is mature, reliable, and handles most partitioning tasks correctly. Its limitations become apparent for advanced operations, where diskpart or third-party tools fill the gap. Knowing which tool to use for which operation — and keeping a partition manager in your toolkit for the edge cases — gives you complete control over drive organisation without risk of unexpected data loss from attempting operations the wrong tool can’t do correctly.

Drive status indicators explained

Disk Management shows each volume’s status in the top pane. The status values mean:

  • Healthy: working normally, no issues
  • Healthy (Boot): the system boot partition — contains the Windows bootloader
  • Healthy (System): contains the active Windows installation
  • Healthy (Active): the partition set as active for BIOS booting (MBR disk)
  • Failed: the volume can’t be read — hardware failure or severe corruption
  • Failed Redundancy: one drive in a mirrored/RAID volume has failed but the volume still functions
  • Formatting: format in progress
  • Online (Errors): I/O errors detected — run chkdsk on the volume: chkdsk [letter]: /f /r
  • Offline: the disk or volume is offline and not accessible

Most users will only ever see “Healthy” status variations. “Online (Errors)” warrants immediate investigation — run chkdsk, check SMART health with CrystalDiskInfo, and back up the drive before errors worsen. “Failed” indicates hardware-level problems that chkdsk can’t resolve and that may require data recovery before drive replacement.

Disk Management remains one of the most immediately useful administrative tools in Windows 11, handling the practical partition management that most users need for adding drives, formatting storage, and understanding what’s on their disks. Starting here before installing third-party partition software resolves most common disk setup tasks without additional complexity — the GUI is capable enough for the majority of scenarios, and knowing the alternatives are available for the rest prevents unnecessary tool proliferation. Our guide on Windows 11 Computer Management covers an adjacent issue.

Nikolas Lamprou

Nikolas Lamprou (MSc; GCFR, SC-200, Security+) has been working with computers professionally since 2009 — starting with web development and e-commerce, and moving into cybersecurity over the years. Based in Greece, he brings over 15 years of real-world IT experience to SolveTechToday, where he writes about Windows fixes, software reviews, security tools, and AI applications. His goal is straightforward: cut through the noise and give readers clear, honest guidance on the tech decisions that matter.

Stay Ahead

Fix your next problem before it starts

Get the week's best Windows fixes, software picks, and security guides delivered straight to your inbox. No noise, just solutions.

Press ESC to close · Try "Windows 11" or "Chrome"