Windows Server Active directory time synchonisation

5
(1)

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:

277

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 1

No votes so far! Be the first to rate this post.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top