Hello,
The error code 0xc000020c indicates that the Cluster Shared Volume is paused due to a transient I/O or connectivity issue. Since your cluster networking has already recovered, the safest way forward is to resume the CSV without forcing ownership changes unless necessary.
Start by running Get-ClusterSharedVolume in PowerShell and check the State property. If it shows Paused, you can issue Resume-ClusterResource -Name "<CSVName>" which will bring the CSV back online without disrupting workloads. This is the preferred method because it avoids unnecessary coordinator moves and keeps the running VMs attached to the same storage path.
If the resume operation fails or the CSV remains inaccessible, then moving the CSV coordinator is valid. Use Move-ClusterSharedVolume -Name "<CSVName>" -Node <HealthyNode> to shift ownership. This forces the cluster to re-establish the I/O path through a healthy node. It’s safe to do this while workloads are running because CSV redirection will handle the transition, but you should expect a brief latency spike.
Once the CSV is resumed or moved, you can redistribute coordinator ownership using Get-ClusterSharedVolume and Move-ClusterSharedVolume to balance load across nodes. Microsoft’s best practice is to spread CSV ownership evenly so that no single node is overloaded with metadata traffic.
For validation, check the System and FailoverClustering event logs on the affected node. Look specifically for Event ID 5120 (indicating loss of access to a CSV volume) and Event ID 5142 (indicating recovery). In PowerShell, Get-ClusterSharedVolumeState will confirm the health status, and Get-ClusterResource -Name "<CSVName>" | Get-ClusterLog -TimeSpan 5 can provide detailed diagnostics. Also verify that redirected I/O has ceased by checking performance counters under Cluster CSV File System Driver.
In summary: resume the CSV first, move ownership only if resume fails, then redistribute coordinators for balance. Confirm health with event logs and PowerShell checks before placing workloads back.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
HP.