DNS Server
DNS Caching






; Domains with only one domain controller will throw errors on startup
; because the Netlogon service starts before the DNS Server service and
; the DC's records are not properly registered by DNS. This script waits
; 60 seconds after startup, and restarts the Netlogon service to register
; the DC's records in AD integrated DNS.
; Rename this file to 1dcdns.bat after downloading and configure as the
; domain controller startup script.
@echo off
ping -n 60 127.0.0.1 >NUL
net stop  "netlogon"
net start "netlogon"
ipconfig /registerdns
exit