0X000013DF

Fix 0X000013DF: Corrupt Cluster Database Backup

Database Errors Intermediate 👁 1 views 📅 Jun 8, 2026

This error means the backup of your cluster database is corrupted. I'll walk you through three fixes, from a quick reboot to a full database rebuild.

What triggers this error

Error 0X000013DF pops up when you try to back up a Windows Server Failover Cluster and the backup process detects corruption in the cluster database. This usually happens after a sudden power loss, a disk failure on the quorum witness, or a failed software update that didn't complete cleanly. I've seen it most often on Server 2016 and 2019 clusters after an unexpected reboot.

The backup tool (like Windows Server Backup or a third-party app) reads the cluster database from the %SystemRoot%\Cluster directory. If that file is inconsistent or damaged, the backup fails with this code.

Here's the flow: start with the simplest fix (takes under a minute). If that doesn't work, move to the moderate fix (about 5 minutes). If you're still stuck, the advanced fix (15+ minutes) will rebuild the database. You can stop as soon as the error goes away.

Fix 1: Quick reboot (30 seconds)

Before you do anything complicated, restart the cluster node that's failing the backup. Corruptions in memory or a stuck database transaction can cause this error. A clean reboot flushes everything out.

  1. Open PowerShell as Administrator on the affected node.
  2. Run Stop-Service clussvc. You'll see the Cluster service stop. The node will show as Offline in Failover Cluster Manager.
  3. Once the service stops (about 10 seconds), run Start-Service clussvc.
  4. Wait until the node comes back Online. This takes about 20 seconds.
  5. Try your backup again.

Expected outcome: If the error was caused by a transient issue, the backup will succeed. If you still see 0X000013DF, move to Fix 2.

Fix 2: Run the built-in cluster database repair (5 minutes)

Windows Server ships a hidden repair tool for the cluster database. It's called clussvc -fixquorum, and it can fix minor corruption without losing your cluster configuration.

  1. Stop the Cluster service on the node that's having the backup issue.
  2. Open an elevated Command Prompt (right-click, Run as Administrator).
  3. Run: clussvc -fixquorum
  4. Wait for it to complete. You'll see messages in the command window like "Checking cluster database integrity..." followed by "Corruption found and repaired" or "Database is clean."
  5. Start the Cluster service: net start clussvc.
  6. Wait about 30 seconds for the node to rejoin the cluster.
  7. Run your backup again.
  8. Expected outcome: If -fixquorum reported repairs, the backup should work now. If it said "Database is clean" or the error persists, move to Fix 3.

    Fix 3: Restore the cluster database from a known-good backup (15+ minutes)

    If the built-in repair didn't help, the corruption is deeper. You'll need to replace the corrupted database file with a good copy. This requires you to have a recent, working backup of the cluster database (not the backup that failed, but an earlier one).

    1. Identify which node holds the quorum disk (the active cluster disk). In Failover Cluster Manager, go to Storage > Disks. The quorum disk has "Quorum" in its status.
    2. Take that node offline: run Stop-Service clussvc on it.
    3. On that node, open File Explorer and go to C:\Windows\Cluster. You'll see a file named cluster (no extension). That's the database.
    4. Before replacing it, rename the current file: right-click cluster, choose Rename, and change it to cluster.bad.
    5. Locate your good backup. If you have a System State backup (which includes the cluster database), restore it to a temporary folder like C:\temp\cluster_backup. The cluster database inside a System State backup is at %SystemRoot%\Cluster\cluster.
    6. Copy that good cluster file from your backup into C:\Windows\Cluster.
    7. Start the Cluster service: Start-Service clussvc.
    8. Check if the node comes Online and the cluster is stable. Run Get-ClusterNode to verify all nodes show as Up.
    9. Try your backup again.

    Expected outcome: The backup should complete without error 0X000013DF. If the node fails to start or the cluster shows errors, restore the cluster.bad file back and consider rebuilding the cluster from scratch (that's a bigger project I won't cover here).

    What if none of these work?

    If you've tried all three fixes and still get 0X000013DF, the corruption might be in a specific resource's data (like a generic script or a custom resource) rather than the database itself. In that case, disable non-critical resources one at a time and retry the backup to isolate the culprit.

    Another option: run a disk check on the quorum disk. Bad sectors on the disk can cause intermittent corruption. Open an elevated Command Prompt and run chkdsk D: /f (replace D: with your quorum disk letter). This can take a while and requires a reboot.

    You've got this. The error is fussy but fixable.

Was this solution helpful?