📖 ~1 min read
Table of contents
Symptom & Impact
After promoting a server to DC, SYSVOL and NETLOGON shares are missing. Group Policy processing fails and logons become inconsistent.
Environment & Reproduction
Occurs on Windows Server 2022 build 20348 when DFSR initialization is blocked or AD replication is incomplete.
Get-SmbShare | Where-Object Name -in 'SYSVOL','NETLOGON'
Get-Service DFSR,NTDS,Netlogon
dcdiag /test:sysvolcheck /test:advertising
Root Cause Analysis
DFSR may remain in an uninitialized state due to replication delay, invalid permissions, or migration leftovers from older DCs.
Quick Triage
Confirm DFSR state and initial synchronization readiness.
Get-WinEvent -LogName 'DFS Replication' -MaxEvents 80 | Select TimeCreated,Id,Message
wmic /namespace:\rootmicrosoftdfs path dfsrreplicatedfolderinfo get replicatedfoldername,state
Step-by-Step Diagnosis
Validate replication topology and SYSVOL subscription objects.
repadmin /replsummary
Get-ADObject -LDAPFilter '(objectClass=msDFSR-Subscription)' -SearchBase 'CN=Domain System Volume (SYSVOL share),CN=DFSR-LocalSettings,CN=DC01,OU=Domain Controllers,DC=contoso,DC=local' -Properties *
ntfrsutl ds

Solution — Primary Fix
Restart dependency services and force AD/DFSR convergence.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Restart-Service DFSR -Force
repadmin /syncall /AdeP
dfsrdiag pollad
Restart-Service Netlogon
net share

Solution — Alternative Approaches
Use authoritative/non-authoritative DFSR restore only if SYSVOL data is corrupted.
dfsrdiag backlog /rgname:'Domain System Volume' /rfname:'SYSVOL Share' /sendingmember:DC1 /receivingmember:DC2
wbadmin start systemstaterecovery -version: -quiet
Verification & Acceptance Criteria
SYSVOL and NETLOGON shares should be present and GPO processing must succeed.
Get-SmbShare | Where-Object Name -in 'SYSVOL','NETLOGON'
gpupdate /force
Get-WinEvent -LogName System -MaxEvents 50 | Where-Object Id -in 5719,1058,1030
Rollback Plan
If service health degrades, revert to pre-change system state backup.
wbadmin get versions
wbadmin start systemstaterecovery -version: -quiet
Prevention & Hardening
Promote DCs in low-change windows and monitor DFSR initialization events.
Get-WinEvent -LogName 'DFS Replication' -FilterXPath '*[System[(EventID=4602 or EventID=4614)]]'
repadmin /replsummary
Related Errors & Cross-Refs
Commonly linked with DNS SRV registration gaps and replication latency between sites.
Related tutorial: View the step-by-step tutorial for Windows Server 2022.
View all Windows Server 2022 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: SYSVOL DFSR troubleshooting, AD DS promotion checks, and Group Policy dependency guidance.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.