Affected versions: Windows Server 2022

πŸ“– ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution β€” Primary Fix
  7. Solution β€” Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

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'
Illustrative mockup for windows-server-2022 β€” terminal_or_powershell
Cluster quorum and witness diagnostics β€” Illustrative mockup β€” Progressive Robot

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
Illustrative mockup for windows-server-2022 β€” event_or_log_viewer
Cluster service quorum events β€” Illustrative mockup β€” Progressive Robot

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'

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.