To synchronize time in an Active Directory domain, you need to take a few simple steps. First you need to open udp port 123 for the domain controller. 1. Launch the command line as administrator. 2. Stop the W32Time service:
net stop w32time
3. Set the addresses of external time sources:
w32tm /config /syncfromflags:manual /manualpeerlist:"0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org"
4. Now let’s force the controller to respond to clients’ requests for time synchronization:
w32tm /config /reliable:yes
5. Start the W32Time time service:
net start w32time
6. Check the current configuration of the time service:
w32tm /query /configuration
At this point, time synchronization in the Windows domain can be considered configured
Similar Posts:
- How to synchronize time in an Active Directory domain
- php 7.4 + nginx quick start on Windows 10 / Server 2012 / 2016 / 2019
- Windows Server 2012 / 2016 how to add a program to startup
974