0X00001725

Cluster Quorum Error 0X00001725 Fix Steps

Server & Cloud Intermediate 👁 1 views 📅 Jun 11, 2026

This error means your Windows Server cluster can't form because it doesn't have enough voting nodes. Here's exactly how to fix it.

Quick answer: If you're in a pinch and need the cluster up now, run Stop-Service ClusSvc on all nodes, then Start-Service ClusSvc -ForceQuorum on one node. This forces a local quorum and gets the cluster online.

Here's the deal: Windows Server Failover Clusters rely on quorum to make sure decisions get made consistently. When a cluster starts (not when it loses nodes later), the first node to come up needs to grab a quorum vote. If the cluster is configured with a node majority or uses a file share witness that's unreachable, the cluster service throws ERROR_CLUSTER_NO_QUORUM (0x00001725) and flat refuses to come online. I've seen this most often after a power outage where all nodes reboot at the same time, or when a witness file share gets moved or permissions change.

The real fix depends on why quorum is missing. Let's walk through the most common scenario: you've got two nodes and a file share witness, and neither node can reach the witness because the file server is down.

Step-by-step: Force the cluster online

  1. Stop the cluster service on every node. Log into each server and run PowerShell as Administrator. Type Stop-Service ClusSvc. Wait for the command to finish. After this, you should see no cluster service process running in Task Manager.
  2. Pick one node to be the primary. The one with the most resources (or the one that was the active owner before the crash) is a good choice.
  3. Start the cluster service with forced quorum. On that primary node, run Start-Service ClusSvc -ForceQuorum. This tells the cluster service "act like you have quorum even if you don't." You should see the cluster come online within 30 seconds. Check with Get-ClusterNode — it will show the node as Up.
  4. Bring up the remaining nodes normally. On each other node, run Start-Service ClusSvc (no force flag). They should join the cluster automatically. Run Get-ClusterNode again — all nodes should show as Up.
  5. Fix the underlying quorum issue. The forced quorum is a band-aid. Once all nodes are online, check the quorum configuration with Get-ClusterQuorum. If the witness is unreachable, you'll see it listed but the state will say "Not connected."
    • If the file share witness is permanently gone, remove it: Set-ClusterQuorum -NoWitness
    • If the witness server is just temporarily down, wait for it to come back, then reconfigure: Set-ClusterQuorum -FileShareWitness \\newpath\witness
    • If you have an odd number of nodes, you don't need a witness at all. Use Set-ClusterQuorum -NodeMajority

Alternative fixes when the main one doesn't work

Can't force quorum because the cluster service won't start at all

Sometimes the cluster service crashes immediately after you force it. This usually means the cluster database is corrupted. In that case, you'll need to restore the cluster configuration from backup. Use Get-ClusterResource on a healthy node (if any) to export the configuration, or restore from your backup system.

The file share witness is online but nodes can't see it

Check DNS first. Run nslookup witnessservername from each node. If that fails, add a hosts file entry on each cluster node. Also check firewall rules — the cluster nodes need access to the witness's SMB port (445). Quick test: Test-NetConnection witnessservername -Port 445. If it fails, open that port in the firewall on the witness server.

Dynamic quorum is causing issues

On Server 2012 R2 and later, clusters use dynamic quorum by default. This lets the cluster adjust votes on the fly. But sometimes it gets confused. Disable it temporarily: (Get-Cluster).DynamicQuorum = 0. Then force quorum as above. Once the cluster is stable, re-enable it with (Get-Cluster).DynamicQuorum = 1.

Prevention tip

Stop this from happening again. Set your cluster to use a cloud witness if you have an Azure subscription. Cloud witnesses are way more reliable than file share witnesses because they don't depend on another server staying up. To set it up: Set-ClusterQuorum -CloudWitness -AccountName "YourStorageAccount" -AccessKey "YourKey". Also, make sure your cluster nodes are on a UPS with graceful shutdown. A coordinated reboot where all nodes lose power at once is the #1 cause of this error.

Was this solution helpful?