question

JoeGullo-2069 avatar image
0 Votes"
JoeGullo-2069 asked JoeGullo-2069 answered

Cannot extend volumes on WIndows Server 2019?

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-server-2019
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

XiaoweiHe-MSFT avatar image
0 Votes"
XiaoweiHe-MSFT answered XiaoweiHe-MSFT edited

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.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

JoeGullo-2069 avatar image
0 Votes"
JoeGullo-2069 answered

95619-image.png


![95642-image.png][2]


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][3]



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.
[2]: /answers/storage/attachments/95642-image.png
[3]: /answers/storage/attachments/95661-image.png


image.png (28.3 KiB)
image.png (16.6 KiB)
image.png (2.3 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.