Hi,
Thank you for posting your query. According to your description, you may follow the steps with powershell and generally fix this. Have you tried this way? Is there something wrong with this solutionn?
Open PowerShell in admin mode (PowerShell ISE is better)
To get the names of the disks, type the following command:
Get-PhysicalDisk
To get the names of the virtual disks, type the following command:
Get-Virtual-Disk
First mark the disk you want to remove as "retired" by the following command:
Set-PhysicalDisk -FriendlyName 'PhysicalDiskXX' -Usage Retired
Now your disk is mark to be removed. You need to rebuild each of your virtual disks with the following command:
Repair-VirtualDisk -FriendlyName 'My Virtual Disk'
You can monitor the progression of the process by typing the following command:
Get-StorageJob
Once everything is done, just remove the disk from the pool with this command:
Remove-PhysicalDisk -FriendlyName 'PhysicalDiskXX'
Best Regards,
Grace
---If the suggestions above are helpful, please ACCEPT ANSWER. Really appreciate. This will also help others with similar issue to find this post quickly. ---