There are a few parameters that control this, but I believe the default is the MinPollInterval
and MaxPollInterval
. You can check it on a client (see below) to finding the polling interval.
There's also a "specialpollinterval" (see here:http://blogs.msdn.com/b/w32time/archive/2009/02/02/group-policy-settings-explained.aspx) if it is enabled.
I believe the default is 1 hour (specialpollinterval).
You can run w32tm /monitor
on a client to see what the current offset is to the DC.
You can use w32tm /query /status
to get the actual Poll interval, such as:
C:\WINDOWS\system32>w32tm /query /status
Leap Indicator: 0(no warning)
Stratum: 2 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0634819s
Root Dispersion: 1.7993795s
ReferenceId: 0xA5C17EE5 (source IP: 165.193.126.229)
Last Successful Sync Time: 11/19/2013 9:47:27 AM
Source: time.nist.gov,0x9
Poll Interval: 10 (1024s)
You can check the full configuration using w32tm /query /configuration
.
You can also force a sync using w32tm /resync
or stopping/starting w32time service on the clients. You can even specify the client that will resync in the /resync
parameter (check the /? help).