To repair a Storage Spaces Mirror pool with Reduced Resiliency, you can try the following steps:
- First, make sure both drives are connected and turned on.
- Check the health status of the drives using the
Get-PhysicalDisk
cmdlet in PowerShell. If one of the drives shows an error, consider replacing it. - If both drives are healthy, you can try running the
Repair-VirtualDisk
cmdlet in PowerShell to repair the virtual disk. This cmdlet repairs the resiliency of the specified virtual disk by rebuilding the data on the failed or degraded physical disks. Here is an example command:
Repair-VirtualDisk -FriendlyName "MyVirtualDisk"
- If the repair is unsuccessful, you can try running the
Repair-StoragePool
cmdlet in PowerShell to repair the storage pool. This cmdlet repairs the resiliency of the specified storage pool by rebuilding the data on the failed or degraded physical disks. Here is an example command:
Repair-StoragePool -FriendlyName "MyStoragePool"
If you do not have the Storage Spaces-specific cmdlets in your PowerShell, you can install them by installing the Storage Spaces feature. Here is an example command to install the feature:
Install-WindowsFeature -Name Storage-Services
Note that you may need to restart your computer after installing the feature.
References: