Hello,
When a Windows Failover Cluster shows “Partitioned” after a transient network outage, it means the cluster service has not yet reconciled quorum and node membership even though connectivity is back. You do not need to reboot nodes to recover, but you do need to re‑synchronize cluster state. The first step is to check cluster health with Get-ClusterNode and Get-ClusterGroup in PowerShell. Nodes that are stuck in “Partitioned” will show as “Up” but not fully joined.
You can force rejoin by restarting the cluster service on the affected node with Restart-Service ClusSvc or by issuing Start-ClusterNode -Name <nodename> -Force. This clears the partition flag and re‑evaluates quorum. If multiple nodes are impacted, run Start-ClusterNode -Force on each until all are listed as “Up” and “Joined.” To confirm quorum, use Get-ClusterQuorum and ensure the witness and majority are consistent.
Cluster validation can be run with Test-Cluster to confirm there are no lingering network misconfigurations. If the partition state persists, check the cluster logs under %SystemRoot%\Cluster\Reports and look for event IDs 1135 and 1177 in the FailoverClustering log, which indicate node removal and re‑addition. These will tell you if the cluster service is still rejecting membership due to stale heartbeat data.
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!
Domic Vo.