Cannot extend volumes on WIndows Server 2019?

Joe Gullo 21 Reputation points
2021-05-10T21:23:34.75+00:00

I have a VMware ESXi 7.0 backed Server running Server 2019. I have 5 disks on the server and need to extend 2 of them. In VMWare, I have allocated more space (4.5->5.75TB on one, 3.5->4.75TB for the other). After running "Rescan Storage" from "Server Manager -> File and Storage Services -> Volumes -> Disks" I see the correct capacity. When I click a drive, see the desired volume, and right click it to "Extend volume" I am shown a maximum size that is the same as the original volume. I have confirmed that the disks are GPT partitioned, and the unallocated space is directly after the NTFS drive.

Any advice is appreciated.

Windows for business | Windows Server | User experience | Other
0 comments No comments
{count} votes

Accepted answer
  1. Xiaowei He 9,936 Reputation points
    2021-05-11T05:57:06.813+00:00

    Hi,

    Would you please show us the screenshot of the disk and volume in disk management?

    Besides, please check if use the command diskpart to extend volume could work?

    diskpart
    list disk
    select disk <>
    list partition
    select partition <>
    list voume
    select volume <>
    extend
    extend filesystem

    Thanks for your time!
    Best Regards,
    Anne

    -----------------------------

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Joe Gullo 21 Reputation points
    2021-05-11T15:08:10.297+00:00

    95619-image.png

    95642-image.png

    It appears the CLI version works:

    PS C:\Windows\system32> diskpart

    Microsoft DiskPart version 10.0.17763.1554

    Copyright (C) Microsoft Corporation.
    On computer: *****FILE-02

    DISKPART> list disk

    Disk ### Status Size Free Dyn Gpt


    Disk 0 Online 60 GB 0 B *
    Disk 1 Online 4096 GB 0 B *
    Disk 2 Online 2048 GB 0 B *
    Disk 3 Online 5888 GB 256 GB *
    Disk 4 Online 4864 GB 358 GB *

    DISKPART> select disk 3

    Disk 3 is now the selected disk.

    DISKPART> list partition

    Partition ### Type Size Offset


    Partition 1 Reserved 15 MB 17 KB
    Partition 2 Primary 5631 GB 16 MB

    DISKPART> select partition 1

    Partition 1 is now the selected partition.

    DISKPART> list volume

    Volume ### Ltr Label Fs Type Size Status Info


    Volume 0 D DVD-ROM 0 B No Media
    Volume 1 C NTFS Partition 59 GB Healthy Boot
    Volume 2 Recovery NTFS Partition 499 MB Healthy Hidden
    Volume 3 FAT32 Partition 99 MB Healthy System
    Volume 4 E UserProfile NTFS Partition 4095 GB Healthy
    Volume 5 F ShareRoot NTFS Partition 2047 GB Healthy
    Volume 6 G Comms NTFS Partition 5631 GB Healthy
    Volume 7 H IT NTFS Partition 4505 GB Healthy

    DISKPART> select volume 6

    Volume 6 is the selected volume.

    DISKPART> extend

    DiskPart successfully extended the volume.

    DISKPART> extend filesystem

    DiskPart successfully extended the file system on the volume.

    DISKPART>

    95661-image.png

    That will do it; maybe there's an error in the servermgmt tool in Server 2019? This is our first Server 2019 system and it works all the time in server 2016.

    0 comments No comments

  2. Azucena Zubia Chairez 0 Reputation points
    2025-02-05T17:30:55.5666667+00:00

    It didn't work for me :(

    User's image

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.