Extend Volume Greyed Out in Disk Management — How to Fix
"Extend Volume" being greyed out in Windows Disk Management is the most common partition problem Windows users face. The option is disabled — not broken — because Windows has strict requirements about when it will allow a partition to be extended. This guide explains every cause and provides the correct fix for each scenario.
Quick Answer
Why is Extend Volume greyed out?
Extend Volume is greyed out for one of three reasons: (1) there is no unallocated space on the disk at all, (2) the unallocated space exists but is not directly to the RIGHT of the partition you want to extend, or (3) the partition uses FAT32 instead of NTFS. Windows Disk Management cannot move partitions or extend across non-adjacent space — you need a third-party tool for those cases.
Cause 1: Unallocated Space Is on the Wrong Side
This is the most common cause. Windows Disk Management can only extend a partition into unallocated space that is immediately to its right on the disk map. If you deleted a partition that was to the LEFT of your target drive, or if there is a different partition sitting between your target drive and the unallocated space, Extend Volume will be greyed out.
Visual check: Open Disk Management and look at the horizontal disk bar. Your target partition should be immediately followed by a black "Unallocated" block with no other partitions between them.
Download AOMEI Partition Assistant Standard (free)
Download from aomei.com. AOMEI can move unallocated space to any position on the disk — a capability Windows Disk Management does not have.
Right-click the partition between your target and the unallocated space
Select "Move Partition" from the context menu. A visual slider appears. Drag the partition to the right to move it past the unallocated space, placing the free space adjacent to your target.
Right-click your target partition and select Resize / Move
Drag the right edge of the partition into the unallocated space to the right. Enter the exact size or use the slider for a visual approach.
Click Apply to execute all pending operations
AOMEI applies all changes in one operation. A restart may be required if the C: drive is involved. The process is safe — your files are not affected.
Cause 2: The Partition Is FAT32, Not NTFS
Windows Disk Management cannot extend FAT32 partitions. This is a Windows limitation, not a disk problem. If your partition was originally formatted as FAT32 (common on older external drives, USB drives, or partitions created before Windows Vista), the Extend Volume option will always be greyed out regardless of available space.
Confirm the file system type
In Disk Management, right-click the partition and select Properties. The General tab shows the file system. If it reads FAT32, this is your issue.
Convert FAT32 to NTFS without data loss
Open Command Prompt as Administrator. Type: convert X: /fs:ntfs (replace X with your drive letter). This converts the file system without deleting any files. The process takes 1–5 minutes depending on the amount of data.
Retry Extend Volume in Disk Management
After conversion completes, reopen Disk Management (or press Action > Rescan Disks). Right-click the now-NTFS partition — Extend Volume should now be available if adjacent unallocated space exists.
Cause 3: No Unallocated Space Exists on the Disk
If every block on the disk is assigned to a partition, there is nothing to extend into. You must first shrink an existing partition to create unallocated space. The partition you shrink should ideally be adjacent to the one you want to grow.
Identify a partition with significant free space
Open Disk Management and look at each partition. Right-click one with plenty of free space and check its Properties to see how much is actually used.
Right-click that partition and select Shrink Volume
Windows calculates the maximum shrinkable amount (limited by unmovable files at the end of the partition). Enter the amount to shrink in megabytes. 1 GB = 1024 MB.
The freed space appears as Unallocated
A black Unallocated block appears immediately to the right of the shrunk partition. If this is directly adjacent to the partition you want to grow, right-click that partition and select Extend Volume.
Use AOMEI if the unallocated space is not adjacent
If the free space is not next to your target partition, use AOMEI Partition Assistant to move it. Windows Disk Management cannot extend across non-adjacent space.
Cause 4: The Disk Is a Dynamic Disk
Dynamic disks use a different partition structure than basic disks. Some dynamic disk volume types (specifically simple and spanned volumes) can be extended, but striped, mirrored, and RAID-5 volumes cannot. Check the disk type in Disk Management — it is displayed below the disk number on the left side of the disk bar (e.g., "Basic" or "Dynamic").
Most home and business PCs use basic disks. Dynamic disks are primarily used in server environments. If your disk shows as Dynamic and you did not intentionally set it up that way, it was likely converted accidentally. Converting it back to Basic requires deleting all volumes on the disk, so back up first.
Using DiskPart as an Alternative
For NTFS partitions where adjacent unallocated space exists but Extend Volume is still greyed out in the GUI, the command-line DiskPart tool sometimes succeeds where the GUI fails.
# Open Command Prompt as Administrator, then type:
diskpart
list volume
select volume 2
# Replace 2 with your volume number from the list above
extend
# Extends by all available adjacent unallocated space