Close Menu

    Subscribe to Updates

    Get the latest Tech news from SynapseFlow

    What's Hot

    IonQ Targets Quantum Error-Correction Bottleneck With Single-CPU DecoderIonQ Says Sin

    September 23, 2026

    Software Update Turns Samsung’s “AI Fridges” Into Useless Bricks

    September 23, 2026

    Apple opens a 600-seat live music venue in London

    September 23, 2026
    Facebook X (Twitter) Instagram
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    Facebook X (Twitter) Instagram YouTube
    synapseflow.co.uksynapseflow.co.uk
    • AI News & Updates
    • Cybersecurity
    • Future Tech
    • Reviews
    • Software & Apps
    • Tech Gadgets
    synapseflow.co.uksynapseflow.co.uk
    Home»Software & Apps»Unable to extend volume in Hyper-V
    Unable to extend volume in Hyper-V
    Software & Apps

    Unable to extend volume in Hyper-V

    The Tech GuyBy The Tech GuySeptember 23, 2026No Comments6 Mins Read0 Views
    Share
    Facebook Twitter LinkedIn Pinterest Email
    Advertisement


    When managing Hyper-V VMs, one crucial task is extending disk space. You can allocate more space to your VM in its settings, but when you try to extend the volume, you may notice that Extend volume is greyed out. In this post, we’ll cover this issue and what you can do if you can’t extend the volume in Hyper-V.

    Advertisement

    How to increase Disk Size in Hyper-V?

    To increase Disk Size in Hyper-V:

    • Open Hyper‑V Manager and shut down the virtual machine.
    • Right‑click the VM
    • Go to Settings and select the Hard Drive.
    • Click Edit and then choose Expand in the wizard.
    • Enter the new size (larger than current value) and continue with the wizard.
    • Start the VM, then extend the partition inside the guest OS using Disk Management.

    Unable to extend volume in Hyper-V

    When you increase the size of a virtual hard disk (VHDX) file in Hyper-V Manager, you are only raising the maximum capacity of the disk. The guest operating system in the virtual machine will still see the new space as Unallocated Space. The Extend Volume option in Windows Disk Management is greyed out because of a key rule: Windows can expand an NTFS volume only if there is contiguous Unallocated Space immediately to the right of it. If this empty space is separated from your target volume (usually the C: drive) by even a small partition, like the Windows Recovery Environment (WinRE) partition, the Extend Volume option remains disabled. Other reasons this option may be disabled include the disk being formatted as MBR (which can only hold 2TB), the volume not being NTFS, or a Hyper-V Checkpoint locking the virtual disk file.

    Hyper-V Extend volume greyed out

    If you can’t extend the volume in Hyper-V, follow the solutions below.

    1. Delete the blocking recovery partition
    2. Use DiskPart to extend the volume directly
    3. Convert the Disk from MBR to GPT

    Let us talk about them in detail.

    1] Delete the blocking recovery partition

    After successfully expanding the VHDX in Hyper-V Manager, if there is unallocated space blocked by a small recovery partition, you need to delete that blocking recovery partition using the diskpart utility.

    First, open an elevated Command Prompt inside the virtual machine. Now, type diskpart and press Enter.

    Type list disk and press Enter. Identify the disk number that holds your C: drive (usually Disk 0).

    Type select disk 0 (replace 0 with your disk number if different) and press Enter.

    Now, type list partition and press Enter. Look for the small partition (often 500–700 MB) between your C: drive and the unallocated space and note its Partition ### number.

    You then have to type select partition 4 (replace 4 with the correct number for your recovery partition) and press Enter. Make sure to double-check the selection.

    Type delete partition override and press Enter. This removes the recovery partition and converts its space to Unallocated.

    Type exit to close DiskPart.

    Now open Disk Management. You will see a single, larger block of Unallocated Space now sitting directly to the right of your C: drive.

    Right-click the C: drive > Extend Volume… > Click Next > Next > Finish. The unallocated space will be seamlessly merged into your C: drive.

    2] Use DiskPart to extend the volume directly

    The DiskPart extend command works like Disk Management but often succeeds when the tool fails due to display issues or minor file system problems. It directly tells the NTFS file system to expand into available space next to it. If the empty space is right next to the volume on the right, DiskPart will extend it without the GUI’s limitations.

    Open an elevated Command Prompt and type diskpart and press Enter.

    Type list volume and press Enter. Find the Volume ### associated with your C: drive (or the volume you want to extend).

    Type select volume C (replace C with the correct volume letter or number) and press Enter.

    Type extend and press Enter.

    If you want to use all available space, type extend.

    To use a specific amount, type extend size=10240 (for 10GB, for example).

    If successful, you will see a message: DiskPart successfully extended the volume. Type exit to close.

    This should do the trick.

    3] Convert the Disk from MBR to GPT

    The Master Boot Record (MBR) partitioning scheme has a hard limit of 2TB for the entire disk. If your virtual disk is larger than 2TB, any single partition cannot exceed that limit, and you cannot extend a volume beyond it. The GUID Partition Table (GPT) scheme supports much larger disks (up to 9.4 ZB). Converting the disk to GPT removes the 2TB barrier, letting you extend the volume to the full capacity of the VHDX.

    To convert the disk from MBR to GPT, follow the steps mentioned below.

    1. Back up the VM immediately. Use a Hyper-V Checkpoint or export the VM.
    2. Inside the guest OS, open an elevated Command Prompt.
    3. Verify the disk is MBR by running diskpart, then list disk, then select disk 0, then detail disk. The output will state Partition Style: MBR.
    4. Type exit to leave DiskPart.
    5. Run the built-in conversion tool: mbr2gpt /validate /disk:0 /allowFullOS (assuming Disk 0) to check compatibility.
    6. If validation succeeds, run the command: mbr2gpt /convert /disk:0 /allowFullOS.

    Shut down the VM completely. In the VM’s Hyper-V Settings, ensure the Firmware is set to use a Generation 2 VM (which requires UEFI/GPT) or that the VM is configured for UEFI. Boot the VM. You can now create partitions larger than 2TB.

    That’s it!

    Read: Fix 0x800f080c Hyper-V error on Windows 11

    How to extend volume in Hyper-V?

    Extending a volume in Hyper-V means expanding the VHDX on the host first, then extending the volume inside the guest. Shut down the VM, use Hyper-V Manager’s Edit Disk or PowerShell’s Resize-VHD to make the virtual disk larger. Boot the VM, open Disk Management, and if Extend Volume is greyed out because a recovery partition blocks the free space, delete that partition with DiskPart. After that, the unallocated space becomes contiguous, and you can extend the C: drive normally.

    Read: Unable to install Hyper-V in Windows Server virtual machine

    Why can’t I increase the disk size in VMware?

    You usually can’t increase the disk size in VMware because the VM has snapshots, is powered on, or uses a linked clone or RDM disk. Snapshots lock the base VMDK in a differencing chain, so the Expand option stays greyed out until you consolidate or delete them. Power off the VM completely, expand the disk in its settings, then extend the volume inside the guest OS. If it still won’t work, check for linked clones or RDM disks, which you must resize at the storage level instead.

    Also Read: Hyper-V failed to connect to local computer.

    Advertisement
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    The Tech Guy
    • Website

    Related Posts

    SUM is for beginners — Excel pros use this instead

    September 23, 2026

    My phone was sending my Bluetooth speaker the worst possible audio until I flicked this one switch

    September 23, 2026

    Better fit, smaller case, same great sound

    September 22, 2026

    Don’t bother with hi-res audio unless you do this setup first

    September 22, 2026

    Meta’s Muse is outpacing ChatGPT’s early mobile launch

    September 21, 2026

    Blurry or pixelated video in Microsoft Teams

    September 21, 2026
    Leave A Reply Cancel Reply

    Advertisement
    Top Posts

    You don’t need a NAS to self-host — I proved it with hardware from my closet

    June 7, 2026391 Views

    Spotify is giving one of its best playlists a big visual upgrade to give subscribers ‘a closer connection’ to its New Music Friday curators — and I think it could be the update it’s always needed

    June 12, 2026210 Views

    The iPad Air brand makes no sense – it needs a rethink

    October 12, 202517 Views
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram
    Advertisement
    About Us
    About Us

    SynapseFlow brings you the latest updates in Technology, AI, and Gadgets from innovations and reviews to future trends. Stay smart, stay updated with the tech world every day!

    Our Picks

    IonQ Targets Quantum Error-Correction Bottleneck With Single-CPU DecoderIonQ Says Sin

    September 23, 2026

    Software Update Turns Samsung’s “AI Fridges” Into Useless Bricks

    September 23, 2026

    Apple opens a 600-seat live music venue in London

    September 23, 2026
    categories
    • AI News & Updates
    • Cybersecurity
    • Future Tech
    • Reviews
    • Software & Apps
    • Tech Gadgets
    Facebook X (Twitter) Instagram Pinterest YouTube Dribbble
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    © 2026 SynapseFlow All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.