1

What can be the reason to get 2 different results when running

C:\Documents and Settings\wswebuser.OPTI>w32tm /monitor
     OptiDC.opti  *** PDC *** [192.168.0.2]:
     ICMP: 0ms delay.
     NTP: +0.0000000s offset from OptiDC.opti
       RefID: 'LOCL' [76.79.67.76]


C:\Documents and Settings\wswebuser.OPTI>w32tm /monitor /computers:192.168.0.2
    192.168.0.2 [192.168.0.2]:
    ICMP: 0ms delay.
    NTP: +0.0182962s offset from local clock
        RefID: 'LOCL' [76.79.67.76]

As you can assume, my PDC is the domain (192.168.0.2) I would assume, that the results should have better sync, no?

Saariko
  • 1,791
  • 14
  • 45
  • 75

1 Answers1

1

There are tons of various parameters that govern the behavior of w32tm: http://technet.microsoft.com/en-us/library/cc773263(WS.10).aspx

It's hard to keep up with exactly how often w32tm truly syncs because it seems that they change it in subtle ways with every version of Windows. Regardless, here's a possible answer for how often it syncs:

65532, "SpecialSkew" = once every 45 minutes until 3 good synchronizations occur, then once every 8 hours (3 per day) [default]

65531, "DailySpecialSkew" = once every 45 minutes until 1 good synchronization occurs, then once every day

Every device you have has a built in clock. Each one of these is going to skew over time, in different ways and in differing degrees. They all have their own personality, so to speak.

And if your OS is only synchronizing every 8 hours, there is a lot of time there for a hardware clock to veer off by a few milliseconds.

Ryan Ries
  • 55,481
  • 10
  • 142
  • 199