Time synchronization is an important aspect for all computers on the network. By default, the clients computers get their time from a Domain Controller and the Domain Controller gets his time from the domain’s PDC Operation Master. Therefore the PDC must synchronize his time from an external source. I usually use the servers listed at the NTP Pool Project website. Before you begin, don’t forget to open the default UDP 123 port (in- and outbound) on your (corporate) firewall.
C:>netdom /query fsmo
C:>net stop w32time
C:> w32tm /config /syncfromflags:manual /manualpeerlist:”0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org”
C:>w32tm /config /reliable:yes
C:>net start w32time
C:>w32tm /query /configuration
C:>w32tm /config /update
Tested on Windows Server 2008 R2 (Build 7600).