To fix this issue and recover the space volume, you can download the update from Microsoft Update Catalog website and then follow these steps:
- Make the space volume resource offline.
- In Windows PowerShell, run the following cmdlets to get the original value of the cluster resource (the default value is 0) and cluster parameter:
Get-ClusterResource "Cluster Disk 8" | Get-ClusterParameter DiskRunChkdsk
Note The original value will be needed later to restore the value.
- Set the resource's private property DiskRunChkDsk to 8 :
Get-ClusterResource SpacesVolumeResource | Set-ClusterParameter DiskRunChkdsk 8
- Make the space volume resource online. The space volume resource will come online and it will automatically switch to Maintenance Mode if the space is attached successfully.
- If there are any associated CSV volumes, those volumes won't be surfaced.
- Use diskmgmt or diskpart to make the disk online.
- Run any volume repair actions as necessary.
- Make the disk offline.
- Make the cluster spaces resource offline.
- Set the resource's private property DiskRunChkDsk back to its original value.
- Make the disk resource online. This should result in a successful online of the resource that is followed by online of CSV volumes.
- If the resource's private property DiskRunChkDsk is set to value 8 on a non-spaces resource which type is Physical Disk, it will have no effect.
Note Both CSV and non-CSV resources are supported by this fix.