Missing SYSVOL and NETLOGON
Open Regedit
Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters
Set SysVolReady
from 0 to 1
Close Regedit
This will create the SYSVOL share
Verify the replication by running the following command.
For /f %i IN ('dsquery server -o rdn') do @echo %i && @wmic /node:"%i" /namespace:\\root\microsoftdfs path dfsrreplicatedfolderinfo WHERE replicatedfoldername='SYSVOL share' get replicationgroupname,replicatedfoldername,state
The states should translate as below
0 = Uninitialized
1 = Initialized
2 = Initial Sync
3 = Auto Recovery
4 = Normal
5 = In Error
If you run the command to see the state of the replication you will see that the servers are all showing state 4 as below and both Sysvol and Netlogon will be replicated
Comments
Post a Comment