Correcting Domain Controller on Public Firewall Profile
This issue came about while migrating domain controllers to a new VMware environment. Fixing this issue can be done in a couple steps.
- Set the sysvolReady registry value from 0 to 1
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\Netlogin\Parameters" -Name "sysvolReady" -Value 1
- Restart DNS and Netlogin service and clear DNS cache
Stop-Service -Name "DNS"
Stop-Service -Name "Netlogon"
Clear-DnsClientCache
Start-Service -Name "DNS"
Start-Service -Name "Netlogon"
Clear-DnsClientCache
Now that's all done. You can now set the firewall profile to the domain firewall profile.