π ~1 min read
Table of contents
Symptom & Impact
Cluster roles stop after witness outage combined with node loss, creating immediate service downtime.
Environment & Reproduction
Common in two-node clusters where witness availability is critical for majority.
Get-Cluster
Get-ClusterQuorum
Get-ClusterNode
Root Cause Analysis
Vote distribution cannot maintain quorum when witness is unavailable and dynamic witness is not helping.
Quick Triage
Validate witness path reachability and current node votes.
Test-NetConnection -Port 445
Get-ClusterNode | Select Name,State,NodeWeight
Step-by-Step Diagnosis
Gather cluster logs around quorum transition and node eviction events.
Get-ClusterLog -UseLocalTime -Destination C:Temp
Get-WinEvent -LogName System -MaxEvents 200 | ? {$_.ProviderName -match 'FailoverClustering'}

Solution – Primary Fix
Restore witness and apply a quorum model that tolerates one-node failure.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-ClusterQuorum -NodeAndFileShareMajority \fsw01clusterwitness
(Get-Cluster).DynamicWitness = 1

Solution – Alternative Approaches
Use cloud witness when file share witness is unavailable.
Set-ClusterQuorum -CloudWitness -AccountName -AccessKey
Verification & Acceptance Criteria
Cluster stays online through a controlled single-node drain test.
Suspend-ClusterNode -Name -Drain
Get-ClusterGroup
Rollback Plan
Revert to pre-change quorum mode from approved change record if instability appears.
Prevention & Hardening
Continuously monitor witness availability and rehearse quorum failure scenarios quarterly.
Related Errors & Cross-Refs
Typically linked with Event IDs 1135 and 1177 during split network conditions.
Related tutorial: View the step-by-step tutorial for Windows Server 2019.
View all Windows Server 2019 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: quorum models and witness best practices for Failover Clustering.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.