Hello,
In this situation, the cluster lost quorum because the Cloud Witness was unreachable and the WAN partition prevented the secondary site’s votes from being counted. Even though three nodes remained healthy at the primary site, the cluster service enforced the no-quorum shutdown to avoid split-brain. Dynamic Quorum can adjust votes, but it does not instantly override a witness loss combined with a site partition.
The recommended way to recover is to manually force quorum on the surviving nodes. On one of the primary site nodes, open an elevated PowerShell session and run:
powershell
Start-ClusterNode -ForceQuorum
This command starts the cluster service and forces quorum using only the nodes available at the primary site. It bypasses the witness and the disconnected nodes. Once quorum is forced, workloads will come online on the surviving nodes.
After recovery, you should reconfigure quorum to stabilize the cluster. If the secondary site is expected to remain offline for an extended period, switch the quorum configuration to Node Majority using only the primary site nodes. This can be done in Failover Cluster Manager under More Actions > Configure Cluster Quorum Settings, or via PowerShell:
powershell
Set-ClusterQuorum -NodeMajority
This ensures that the three operational nodes can maintain quorum independently until WAN connectivity and the Cloud Witness are restored. When the secondary site comes back online, you can reintroduce the witness and rebalance quorum settings.
Do not attempt to leave the cluster in a forced quorum state long-term, as that bypasses the normal safeguards against split-brain. Always reconfigure quorum appropriately after forcing it.
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!
DV.