π ~1 min read
Table of contents
Symptom & Impact
Cluster roles remain offline because nodes cannot establish quorum after maintenance or unexpected restart.
Environment & Reproduction
Two-node or multi-node Windows Server 2019 clusters with witness connectivity issues.
Get-Cluster
Get-ClusterNode
Get-ClusterQuorum
Root Cause Analysis
Witness disk/share is unreachable or vote distribution changed during patching, leaving insufficient quorum votes.
Quick Triage
Determine node membership and witness availability immediately.
Test-NetConnection filesharewitness.contoso.local -Port 445
Get-ClusterResource | Where-Object Name -match 'Witness'
Step-by-Step Diagnosis
Collect cluster logs and inspect quorum decision history.
Get-ClusterLog -Destination C:Temp -TimeSpan 10
Get-WinEvent -LogName 'Microsoft-Windows-FailoverClustering/Operational' -MaxEvents 100

Solution β Primary Fix
Restore witness access and start cluster with quorum-safe sequence.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Start-ClusterNode -Name NODE1 -FixQuorum
Set-ClusterQuorum -FileShareWitness '\fswitnesscluster$'
Start-ClusterNode -Name NODE2

Solution β Alternative Approaches
Use cloud witness when on-prem witness reliability is poor.
Set-ClusterQuorum -CloudWitness -AccountName -AccessKey -Endpoint core.windows.net
Verification & Acceptance Criteria
Cluster reports Up, quorum is healthy, and clustered roles come online.
Get-ClusterGroup
Get-ClusterQuorum
Rollback Plan
Revert to previous witness type if cloud or share witness setup fails.
Set-ClusterQuorum -NodeAndDiskMajority
Prevention & Hardening
Validate witness path and vote configuration before each maintenance cycle.
Test-Cluster -Include 'List Potential Cluster Disks','Inventory'
Related Errors & Cross-Refs
Often related to SMB access denials, DNS failures, and stale cluster network metrics.
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: Failover Cluster quorum design and recovery procedures.
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.