Hi ZBal,
Thank you for reaching back to us with further information!
I have thoroughly gone through the information you provided and as per my understanding, you have a storage pool named Disc2 (sqlvmstoragepool1), which is likely managing the virtual disks associated with your F drive. The contractor who built the VM may have set this up to manage storage more flexibly. Disk Management may only show the physical disks that are in a single pool or not display the storage pool if it’s not set up correctly.Verify the partition setups in Disk Management to ensure there is no misconfiguration that could be leading to the pools not being identified properly.
The provided image shows no direct information about another storage pool or virtual disk associated with the G drive, suggesting it might be managed separately or not configured within the visible storage pool management context.
You can use PowerShell to get a clearer view of your storage pools and physical disks. Run the following commands:
Get-StoragePool Get-PhysicalDisk Get-VirtualDisk
If you're unable to see the option to add a physical disk to your storage pool (like sqlvmstoragepool1), ensure that the physical disks you want to add are online and unallocated.
To add physical disks to a stand-alone tiered storage space in Windows Server, use powershell.
Identify the disks you want to add, then use the command below to add them to the pool (replace YourPoolName
and YourDiskName
accordingly):https://learn.microsoft.com/en-us/powershell/module/storage/add-physicaldisk?view=windowsserver2025-ps
Sometimes a simple reboot can resolve synchronization issues between different management tools.
Let me know if you need further assistance!
If the comment id helpful, please click "upvote" to let us know.