Fix ERROR_CLUSTER_QUORUMLOG_NOT_FOUND (0X00001703)
This pops up when a Windows Failover Cluster node can't find the quorum log file. Usually after a disk failure or a botched quorum witness change.
When this error hits
You're managing a Windows Failover Cluster — Server 2016, 2019, or 2022. One node goes offline, or you reboot a cluster node after a storage hiccup. When the node tries to join the cluster, it throws ERROR_CLUSTER_QUORUMLOG_NOT_FOUND (0X00001703) in the System event log. The cluster service fails to start on that node, and you see "The quorum resource does not contain the quorum log" in Event ID 1581 or 1069.
The culprit here is almost always a corrupted or missing quolog.log file on the quorum witness disk, or a stale node that can't sync because another node already changed the quorum configuration.
Root cause in plain English
The quorum disk acts like a tiebreaker for cluster decisions. It keeps a small log file (quolog.log) that tracks cluster state changes. If that file gets corrupted during a power loss, or if you removed and re-added the quorum disk without cleaning the old log, the cluster can't validate the node's last known state. The node says "I need to see this log," the disk says "I don't have it," and you get stuck.
One specific trigger: You changed the quorum witness from a file share witness to a disk witness, and the node that's offline still references the old witness path. The node's local copy of the cluster database is out of sync with the active cluster.
The fix — three approaches
Approach 1: Force the node to rebuild from the cluster
This works if the node can communicate with the cluster network but the disk is just stale.
- On a working node, open PowerShell as admin.
- Run
Get-ClusterNodeto confirm the problem node shows as Down. - Run
Get-ClusterResource | Where-Object {$_.ResourceType -eq "Physical Disk"}to find your quorum disk. - Make sure the quorum disk is online and accessible from the working node. Check Disk Management.
- On the problem node, force the service to sync by clearing its local cluster database:
Stop-Service ClusSvc Remove-Item "C:\Windows\Cluster\CLUSDB\*" -Force Start-Service ClusSvc - The node will pull the cluster database from quorum. It should join the cluster within 30 seconds.
Approach 2: Rebuild the quorum log manually
If the above fails, the log itself might be hosed. Don't bother trying to open or edit quolog.log — it's binary garbage. Just replace it.
- On a working node, identify the quorum disk drive letter. Usually it's the small LUN (1 GB or less) dedicated to quorum.
- Open File Explorer to that drive. You'll see a hidden folder
\Cluster. Show hidden files if needed. - Inside
\Cluster, there'squolog.log. Copy it to a safe backup first. - Delete the original
quolog.logfrom that folder. - Open PowerShell as admin on the working node and run:
Stop-Service ClusSvc Start-Service ClusSvc - The cluster service will create a fresh
quolog.logfrom the current database. Check the file reappeared. - Now restart the cluster service on the problem node.
Approach 3: Nuke the quorum configuration and rebuild
This is your last resort — affects the whole cluster briefly. Only use if you can afford 5 minutes of downtime.
- On the active node, open Failover Cluster Manager.
- Right-click the cluster name, go to More Actions > Reset Cluster Quorum Settings.
- Select Use default quorum configuration, apply it.
- Now reconfigure your quorum witness to the disk witness again.
- Run
Test-Clusterto validate everything. - Restart all nodes one by one — the problem node last.
What to check if it still fails
If none of that worked, you've got deeper issues.
- Check disk health: Run
chkdsk /fon the quorum LUN from a working node. Bad sectors can corrupt the log even after a rebuild. - Cluster network isolation: The problem node might not be on the correct subnet or VLAN. Ping the quorum disk's IP (if it's shared storage) from the problem node.
- Stale node database: Sometimes the node's registry has a different quorum resource GUID. Compare
HKLM\Cluster\Nodes\NodeID\QuorumPathon a working node vs. the problem node. Back up the registry first, then match the GUID. - Antivirus interference: I've seen AV lock the
quolog.logfile. ExcludeC:\Windows\Cluster\and the quorum disk path from real-time scanning.
If you're still stuck after 30 minutes, force evict the node from the cluster (yes, it's risky) and re-add it. Use Remove-ClusterNode from a working node, then rejoin the problem node fresh.
Was this solution helpful?