Systems Admin

Backup the Active Directory Database (System State + wbadmin)

If you only ever do one Active Directory backup, it’s the system state backup. System state pulls everything AD needs to come back from scratch — the NTDS.DIT database, SYSVOL, the registry, boot files, COM+ class registration, and the Certificate Services database if the box is a CA. Take this on every Domain Controller, on a schedule, and you’ve covered the worst-case Forest Recovery scenario.

This is the first post in the 6-part AD Backup & Disaster Recovery pathway. We’ll cover scheduled backups, bare-metal test/restore, the conceptual difference between non-authoritative and authoritative restore, and the full ntdsutil authoritative restore procedure across the next five posts. Here we’re going to do the one-time, manual, GUI-driven system state backup using Windows Server Backup — the cleanest place to start.

What “system state” actually contains on a DC

Pick the System state checkbox and Windows Server Backup pulls in every component required to bring AD back. On a Domain Controller, that includes:

  • Active Directory databaseNTDS.DIT and its transaction logs
  • SYSVOL — Group Policy templates, scripts, replicated objects
  • System registry — all hives
  • Boot files — BCD, boot manager
  • COM+ class registration database
  • Certificate Services database — if the DC also runs AD CS (avoid that in production, but it happens)
  • Cluster service info — if applicable

You don’t pick those individually. The system state checkbox handles it. That’s why we’re using Windows Server Backup over a plain file copy — everything required is captured atomically inside one VSS snapshot.

Step 1 — Install the Windows Server Backup feature

Windows Server Backup is an optional feature, not installed by default. Add it via Server Manager > Add Roles and Features.

Server Manager Add Roles and Features wizard with Windows Server Backup feature checkbox selected
Server Manager > Add Roles and Features > Features step > tick Windows Server Backup > Next. This is the only feature the wizard adds; no role install or reboot is required.
Add Roles and Features wizard installation results page showing Windows Server Backup installed successfully
Install completes in under a minute. No reboot required. Close the wizard and head back to Server Manager.

Want the one-line PowerShell version? Install-WindowsFeature Windows-Server-Backup. Same result, no reboot needed.

Step 2 — Enlarge the shadow storage cap on the source volume

This step is the difference between “backup works” and “backup silently truncates”. VSS uses a per-volume shadow storage area. The default cap is roughly 10% of the volume size, which on a small system drive can be smaller than a single AD snapshot.

Disk Properties dialog opened from File Explorer right click for the backup target disk
Pick a dedicated disk for backups — not the OS drive, not a shared SYSVOL volume. Right-click in This PC > Properties on the target disk.
Disk Properties Shadow Copies tab with the Settings button highlighted
Shadow Copies tab > Settings. We enlarge the shadow storage cap so VSS does not silently truncate snapshots mid-backup.
Shadow Copies Settings dialog with No limit option selected for maximum size
Set No limit. Default cap is ~10% of the volume — on a small backup volume that’s under a single full system state. Unlimited prevents partial snapshots.

Right-click the source volume in File Explorer > Properties > Shadow Copies tab > Settings > No limit. Repeat on every volume that participates in the backup (most often this is the system drive holding NTDS.DIT).

Step 3 — Launch Windows Server Backup, pick Backup Once

Server Manager Tools menu open with Windows Server Backup option highlighted
Server Manager > Tools > Windows Server Backup. The console is part of the feature you just installed.
Windows Server Backup console with Local Backup selected and Backup Once action available in the right pane
Click Local Backup in the left pane, then Backup Once in the Actions pane on the right. Use Backup Once for a one-shot — the next post in this pathway covers scheduled backups.

Server Manager > Tools > Windows Server Backup. Click Local Backup in the left pane > Backup Once in the Actions pane. (Scheduled backups are covered in Part 2 of this pathway.)

Backup Once Wizard Backup Options page with Different options radio button selected
First wizard page: Different options > Next. (The other radio is only available if a schedule already exists.)

Backup Options page: Different options > Next.

Step 4 — Custom backup, System state only

Backup Once Wizard Select Backup Configuration page with Custom backup type selected
Pick Custom — we want only the system state, not the full server image. Custom lets us pick exactly which volumes / components are captured.

Choose Custom, not Full server. Full server backs up everything (OS + data + apps) and is what Part 3 uses for bare-metal test. Here we only need AD.

Select Items for Backup page with Add Items button visible and no items added yet
Add Items to choose what goes in the backup.
Select Items dialog with System state checkbox ticked to include AD database SYSVOL boot files registry
Tick System state > OK. This single checkbox pulls in NTDS.DIT, SYSVOL, registry, boot files, COM+ class registration, and (if present) Certificate Services database. That is everything you need to authoritatively recover AD.

Add Items > tick System state > OK. The System state node is the umbrella that covers NTDS.DIT, SYSVOL, registry, boot files, and the rest of the components listed above — you cannot pick those individually, only as a group.

Step 5 — VSS Full Backup (this matters)

Advanced Settings dialog VSS Settings tab with VSS full backup option selected
Advanced Settings > VSS Settings > VSS full backup. Use VSS full backup when this is your primary backup — it updates the backup history on each file and clears the application log on apps like Exchange / SQL. Use VSS copy backup if a third-party tool is the primary.

In the Items dialog, click Advanced Settings > VSS Settings > VSS full backup. There are two VSS modes:

  • VSS full backup — marks files as backed up, updates the backup history, clears application logs (Exchange / SQL truncate their VLFs). Pick this when Windows Server Backup is your primary backup method.
  • VSS copy backup — takes a snapshot but doesn’t update history or clear logs. Use this when a third-party tool (Veeam, Commvault, etc.) is the primary backup and Windows Server Backup is a side artifact — otherwise the two tools fight over backup history.

For an AD DC, VSS full backup is almost always correct.

Step 6 — Destination

Specify Destination Type page with Local drives option selected for backup target
Backup destination: Local drives for now. Remote shared folder works too but pushes credentials and TCP into the picture — keep the lab local.

Local drives. Remote shared folder works too, but adds credentials, TCP, and SMB layer to a recovery path you want to be as simple as possible. Use a dedicated disk for backups — not the OS drive, not a SYSVOL volume.

Select Backup Destination page with the dedicated backup volume already selected by default
Wizard pre-selects the available data volume. Confirm it is the dedicated backup disk you prepared, not your OS volume.

Confirm the destination volume.

Step 7 — Run the backup

Confirmation page showing system state backup items destination and Backup button visible
Final summary. Click Backup. Backup runs in the foreground — leave the console open or it cancels.

Summary page > Backup. Backup runs in the foreground; don’t close the console.

Backup progress page showing shadow copies being created and files being found for system state backup
Backup begins: VSS creates a shadow copy of the source volume, then enumerates everything inside System State. Progress is reported live.
Backup progress page showing files being transferred and current status of system state backup
Mid-run status: files being transferred to the destination. A clean AD on a small domain is ~14–20 GB. SYSVOL with lots of GPOs and replicated files can balloon this.

Watch the live progress. VSS creates a shadow copy first, then enumerates system state files and copies them to the destination. A clean AD on a small domain is 14–20 GB. SYSVOL with a heavy GPO load or replicated files can push that much higher.

Backup completed page with status Completed and item System state confirming successful AD database backup
Final status: Completed. Item: System state. You now have a backup that can be used for non-authoritative or authoritative AD restore. Verify it before relying on it — the next two posts walk through testing the restore.

Status: Completed. Item: System state. Done.

Verify the backup before you trust it

A completed wizard is not a verified backup. Two quick checks:

1. Inspect the backup with wbadmin

wbadmin get versions -backupTarget:E:

That lists every backup version on the disk, with timestamp and identifier. Capture the identifier — you’ll need it if you ever drive restore from the command line.

2. List the components in the backup

wbadmin get items -version:<identifier>

Confirms System State is in there. If for any reason it’s not, the backup is useless for AD recovery — rerun the wizard.

Things that bite people

Backing up to the same disk that holds NTDS.DIT

If the disk dies, your backup dies with it. Always use a separate physical disk or, better, a separate physical machine reached over the network. Even a USB external drive that gets rotated weekly is better than nothing.

Shadow storage cap left at default

VSS will silently truncate the snapshot when it hits the cap. Backup completes “successfully” with an incomplete shadow copy, and you only discover the gap when you try to restore. Always set No limit on the source volume.

Picking individual SYSVOL files instead of System state

The Custom wizard lets you tick C:\Windows\SYSVOL or individual files. Don’t. SYSVOL by itself isn’t a recoverable AD backup — you also need the NTDS.DIT at the matching USN and the registry hives the DC was running with. Always use the System state node, never piece together AD components by hand.

VSS copy when Windows Server Backup is the primary tool

Backup history never advances, application logs never truncate. After a few weeks SQL or Exchange logs fill the disk. Match the VSS mode to whether this is your primary backup.

Backing up only one DC

If you have two DCs, take System State on both. They have the same database but different USN starting points, and one of them is likely to be your FSMO holder. Backing up both gives you flexibility in a forest-recovery scenario.

No off-box copy

A backup on the same physical host as the DC dies with the host. Once the wizard completes, immediately copy the WindowsImageBackup folder to another machine, NAS, or cloud blob. Test the copy by listing it with wbadmin get versions -backupTarget:<remote>.

What’s next

Part 2 walks through automating this exact wizard with a daily 11:00 PM schedule using Windows Server Backup’s Backup Schedule wizard — plus the Task Scheduler tweaks that make the scheduled task survive long runs and on-demand kicks.

Leave a Reply