Skip to content

How to Fix SYSVOL and NETLOGON Missing on a Domain Controller

SYSVOL or NETLOGON missing on a domain controller? Learn to diagnose DFSR vs FRS, check the shares, and run authoritative or non-authoritative sync to recover.

MGMCSA Guru Team June 9, 2026 8 min read
Diagram-style cover showing a domain controller with empty SYSVOL and NETLOGON shares being repaired by DFSR replication from a healthy partner DC

A domain controller that isn’t sharing SYSVOL and NETLOGON is a domain controller that can’t do its job. Group Policy stops applying, logon scripts vanish, and clients that depend on those shares start behaving strangely. Run net share on the DC, see no SYSVOL and no NETLOGON, and you’ve found a replication problem hiding behind two missing folders.

Here’s the key idea: those shares are not something you create by hand. A DC only publishes them once its SYSVOL replication is healthy. So the fix is almost never “share the folder” — it’s “get replication working again, and the shares come back on their own.”

This guide walks through identifying whether you’re on DFSR or the older FRS, checking what’s actually broken, and running the right recovery — non-authoritative when one DC is sick, authoritative when SYSVOL is broken across the board.

Why the shares disappear

SYSVOL holds your Group Policy templates and logon scripts, and it’s replicated between DCs by a dedicated engine. On domains built for Server 2012 and later that engine is DFS Replication (DFSR). Older domains may still use the legacy File Replication Service (FRS) until someone migrates them.

The Netlogon service only advertises the SYSVOL and NETLOGON shares when it’s satisfied that replication is in a good state. If the replication engine is stopped, in an error state, or stuck mid-initialization, Netlogon holds the shares back rather than serve incomplete policy. That’s the behavior you’re seeing.

Common triggers:

  • A DC was promoted but never completed its initial SYSVOL sync.
  • DFSR hit a dirty shutdown or database error and paused replication.
  • FRS suffered a journal wrap and stopped on its own.
  • A system state restore left the DC’s SYSVOL out of step with the engine.
  • Replication has been broken long enough that the DC fell out of sync entirely.

Step 1: Confirm what’s actually missing

Start on the affected DC with the basics. Are the shares really gone, or just one of them?

net share

You want to see both SYSVOL and NETLOGON listed, pointing at the SYSVOL path (by default C:\Windows\SYSVOL\sysvol\<domain> and the scripts subfolder). If they’re absent, check the underlying folders exist on disk:

Get-ChildItem C:\Windows\SYSVOL\sysvol
Get-ChildItem C:\Windows\SYSVOL\domain

Then run a focused health check:

dcdiag /test:netlogons /v
dcdiag /test:sysvolcheck /v

dcdiag will usually tell you whether the problem is the share, the replication engine, or something broader like DNS or RPC.

Step 2: Determine DFSR or FRS

The recovery procedure is completely different depending on the engine, so confirm which one your domain uses:

dfsrmig /getmigrationstate

Reading dfsrmig output

'All domain controllers... Eliminated' Migration complete — you are on DFSR. Use the DFSR procedure.
'Prepared' or 'Redirected' Mid-migration — both engines may be present. Finish migration when stable.
Command fails / 'Start' state Still on FRS. Use the FRS BurFlags procedure (and plan to migrate).

If you’re still on FRS, migrating to DFSR should be on your roadmap — FRS has been deprecated for years and isn’t supported as a SYSVOL engine on current server versions. But fix the immediate outage first.

Step 3a: Fix it on DFSR

For DFSR, the question is how many DCs are affected.

If one DC is broken and at least one other has a good SYSVOL, you do a non-authoritative sync on the broken DC — it rebuilds its copy from a healthy partner. If every DC has a bad or empty SYSVOL, you pick the best copy, mark it authoritative, and let the others sync from it.

DFSR SYSVOL recovery decision
flowchart TD
A["SYSVOL/NETLOGON missing"] --> B{"Does at least one DC<br/>have a good SYSVOL?"}
B -->|Yes| C["Non-authoritative sync<br/>on the broken DC (D2)"]
B -->|"No, all bad"| D["Authoritative sync (D4)<br/>on the best copy"]
D --> E["Non-authoritative sync<br/>on every other DC"]
C --> F["Netlogon republishes shares"]
E --> F
Non-authoritative for one broken DC; authoritative only when SYSVOL is bad everywhere.

Non-authoritative DFSR sync (one broken DC)

This is the common case and the safer one. On the broken DC, edit its DFSR SYSVOL subscription object in AD (via ADSI Edit or PowerShell) and set the non-authoritative flag, then restart DFSR.

The object lives at:

CN=SYSVOL Subscription,CN=Domain System Volume,CN=DFSR-LocalSettings,CN=<ThisDC>,OU=Domain Controllers,DC=...

Set msDFSR-Enabled = FALSE, force replication of that change, restart DFSR, then set msDFSR-Enabled = TRUE and restart DFSR again:

# 1. On the broken DC, disable its SYSVOL membership (msDFSR-Enabled = FALSE)
#    then push the change and restart DFSR
repadmin /syncall /AdeP
Restart-Service DFSR

# 2. Re-enable membership (msDFSR-Enabled = TRUE), push again, restart
repadmin /syncall /AdeP
Restart-Service DFSR

DFSR sees the membership come back, treats the local copy as needing initialization, and pulls a fresh copy from a healthy partner. Watch the DFS Replication event log for event 4614 (initialization) followed by 4604 (a healthy, initialized SYSVOL).

Authoritative DFSR sync (all DCs broken)

Only do this when no DC has a usable SYSVOL, because it declares one DC’s contents as the master that overwrites everyone else. Pick the DC with the most complete, correct SYSVOL.

On that chosen DC:

  1. Stop the DFSR service.
  2. Set msDFSR-Enabled = FALSE and msDFSR-Options = 1 on its SYSVOL subscription object.
  3. Force replication of that change to all DCs (repadmin /syncall /AdeP).
  4. Start DFSR — it logs event 4114 (SYSVOL no longer replicating).
  5. Set msDFSR-Enabled = TRUE, force replication again, restart DFSR.
  6. Look for event 4602, confirming this DC is now the authoritative SYSVOL source.

Then run the non-authoritative procedure on every other DC so they rebuild from the authoritative copy.

Step 3b: Fix it on FRS (legacy)

If dfsrmig told you the domain still runs FRS, the equivalent recovery uses the BurFlags registry value under:

HKLM\SYSTEM\CurrentControlSet\Services\NtFrs\Parameters\Backup/Restore\Process at Startup

The BurFlags value drives the resync:

FRS BurFlags values

D2 (hex) Non-authoritative — this DC pulls a fresh copy from a healthy partner. Use on the broken DC.
D4 (hex) Authoritative — this DC's copy becomes the source of truth. Use only when SYSVOL is bad on all DCs.

The procedure mirrors DFSR:

1. Stop the File Replication Service:   net stop ntfrs
2. Set BurFlags = D2 (single broken DC) or D4 (authoritative source)
3. Start the service:                   net start ntfrs
4. Watch the File Replication Service event log for event 13516
   (FRS is ready and SYSVOL is being shared again)

For a domain-wide rebuild: set D4 on the one good DC, start FRS, confirm it’s healthy, then set D2 on every other DC. A common cause of FRS stopping in the first place is a journal wrap (event 13568) — the D2 resync clears it.

Step 4: Verify the shares are back

Once the engine reports a healthy, initialized SYSVOL, Netlogon should republish the shares within a minute or two. Confirm:

net share
dcdiag /test:netlogons
dcdiag /test:sysvolcheck

You can also force a Netlogon recheck if you’re impatient:

Restart-Service Netlogon

SYSVOL recovery verification

  • SYSVOL and NETLOGON both appear in net share
  • dcdiag /test:sysvolcheck and /test:netlogons pass
  • DFSR event 4604 (or FRS event 13516) logged on the DC
  • Group Policy templates present under SYSVOL\domain\Policies
  • gpupdate /force on a client applies policy without error
  • repadmin /replsummary shows no replication failures

Wrapping up

Missing SYSVOL and NETLOGON shares almost always trace back to a stalled replication engine, not a broken share. Identify whether you’re on DFSR or FRS, figure out whether one DC or all of them are affected, then run the matching recovery: non-authoritative to rebuild a single sick DC from a healthy one, authoritative only when everything is broken and you’ve confirmed the best copy.

The one mistake to avoid is forcing an authoritative copy from the wrong DC, or hand-copying the folder and bypassing the engine. Let DFSR or FRS do the work, verify with dcdiag, and the shares come back on their own. If this DC has been unhealthy for a while, it may be cleaner to retire it — see decommissioning a domain controller safely.

Frequently asked questions

Why are SYSVOL and NETLOGON missing on my domain controller?

The shares are only published once SYSVOL replication is healthy. If DFSR (or legacy FRS) is in a failed, paused, or journal-wrap state, the DC won't advertise the shares. The usual root causes are a broken replication state, a recent restore, or a DC that never finished its initial sync.

How do I know if I'm using DFSR or FRS for SYSVOL?

Run dfsrmig /getmigrationstate. If it reports 'Eliminated', you're on DFSR. If the command fails or reports an earlier state, FRS is still involved. Domains built on Server 2012 or later use DFSR by default; older domains may still run FRS until migrated.

What's the difference between authoritative and non-authoritative SYSVOL sync?

Non-authoritative means a DC rebuilds its SYSVOL by copying from a healthy partner — used when one DC is broken. Authoritative means you declare one DC's SYSVOL as the master copy that all others must match — used only when SYSVOL is broken everywhere. Authoritative is the last resort.

What does burflags D2 and D4 mean in FRS?

They're registry values that trigger an FRS resync. D2 (non-authoritative) tells a DC to pull a fresh copy from a partner. D4 (authoritative) declares this DC's copy as the source of truth. They're the FRS equivalents of DFSR's non-authoritative and authoritative sync.

Will fixing SYSVOL replication delete my Group Policy objects?

A non-authoritative sync copies good data from a healthy partner, so GPOs are preserved as long as one DC has them. The risk is doing an authoritative restore from a DC with missing or outdated policies — that can overwrite good copies. Always confirm which DC has the correct SYSVOL contents first.

Can I just manually copy the SYSVOL folder to fix it?

No. SYSVOL is managed by a replication engine (DFSR or FRS), and manually copying files bypasses it, creating conflicts and tracking problems. Use the proper non-authoritative or authoritative procedure so the replication engine stays in sync with what's on disk.

Sources & further reading

Official vendor documentation referenced while writing this guide.

MG

MCSA Guru Team

IT & Systems Administration

We are working IT pros and system administrators who spend our days in Windows Server, Microsoft 365, and the wider Microsoft stack. MCSA Guru is where we write down the fixes and walkthroughs we wish we had found the first time.

MCSA Guru provides independent, educational IT guidance. Microsoft, Windows, Windows Server, Microsoft 365, Exchange, and Microsoft Teams are trademarks of Microsoft Corporation; Docker is a trademark of Docker, Inc. MCSA Guru is not affiliated with or endorsed by Microsoft or Docker. Always test changes in a safe environment before applying them in production.

Related guides

Fixing something right now?

Jump straight into the guide library or search for the exact error or task you are dealing with.