Hello
To increase the capacity of a virtual drive from a storage pool in Windows Server 2019 while keeping the disk as a 'Basic' drive type, you can follow these general steps:
Add the new drive to the storage pool: You've already initialized the new drive and added it to the Storage Pool, which is the correct first step.
Extend the virtual disk: Once the new drive is part of the storage pool, you can extend the virtual disk that is associated with the volume you want to expand. This can be done using the Server Manager or PowerShell commands.
Extend the volume: After the virtual disk is extended, you'll need to extend the volume within the operating system to make use of the new space. This can be done through the Disk Management snap-in or with PowerShell.
Here are some PowerShell cmdlets that can help you with each step:
To add a drive to a storage pool:
Add-PhysicalDisk -StoragePoolFriendlyName "YourStoragePoolName" -PhysicalDisks $newDrive
To extend the virtual disk:
Resize-VirtualDisk -FriendlyName "YourVirtualDiskName" -Size (NewSize)
To extend the volume:
Resize-Partition -DriveLetter X -Size (NewSize)
Make sure to replace "YourStoragePoolName", "YourVirtualDiskName", and "X" with the actual names of your storage pool, virtual disk, and the drive letter of the volume, respectively. Also, replace (NewSize) with the new size you want to set, which should be larger than the current size. https://learn.microsoft.com/en-us/windows-server/storage/storage-spaces/deploy-standalone-storage-spaces