π ~1 min read
Table of contents
Symptom & Impact
Clustered workloads go offline because quorum vote majority is lost.
Environment & Reproduction
Windows Server 2022 build 20348 failover cluster using file share witness.
Get-Cluster
Get-ClusterQuorum
Get-ClusterNode | Select Name,State
Root Cause Analysis
Witness SMB path inaccessible or permissions changed, removing expected vote.
Quick Triage
Validate witness reachability and cluster node membership.
Test-Path \fsw01clusterwitness
Test-NetConnection fsw01 -Port 445
Get-ClusterLog -UseLocalTime -Destination C:Temp
Step-by-Step Diagnosis
Inspect quorum model and dynamic witness behavior.
Get-ClusterQuorum
Get-ClusterNode | Format-Table Name,NodeWeight,DynamicWeight,State
Get-WinEvent -LogName System -MaxEvents 100 | Where-Object Message -match 'Cluster'

Solution β Primary Fix
Restore witness path and reset quorum configuration.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Grant-SmbShareAccess -Name clusterwitness -AccountName 'CONTOSO$' -AccessRight Full -Force
Set-ClusterQuorum -FileShareWitness \fsw01clusterwitness
Start-ClusterNode -Name NODE1

Solution β Alternative Approaches
Switch to cloud witness or disk witness when file share witness is unstable.
Set-ClusterQuorum -CloudWitness -AccountName -AccessKey -Endpoint core.windows.net
Verification & Acceptance Criteria
Cluster core resources and roles should remain online during single-node failure simulation.
Get-ClusterGroup
Suspend-ClusterNode NODE2 -Drain
Resume-ClusterNode NODE2
Rollback Plan
Revert to last known stable quorum model if new witness type fails.
Set-ClusterQuorum -NodeAndFileShareMajority \oldfswclusterwitness
Prevention & Hardening
Monitor witness health and protect SMB dependencies.
Get-ClusterQuorum
Get-SmbConnection | Where-Object ServerName -eq 'fsw01'
Related Errors & Cross-Refs
Associated with intermittent DNS failures and CIFS authentication errors.
Related tutorial: View the step-by-step tutorial for Windows Server 2022.
View all Windows Server 2022 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn quorum models and witness design for failover clusters.
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.