Why does Windows Server (2008, in this case, but I've seen the same problem in 2003) seem to have problem synchronizing time? I've seen this error in my System log across a variety of servers:

The time service has not synchronized the system time for 86400 seconds because none of the time service providers provided a usable time stamp. The time service will not update the local system time until it is able to synchronize with a time source. If the local system is configured to act as a time server for clients, it will stop advertising as a time source to clients. The time service will continue to retry and sync time with its time sources. Check system event log for other W32time events for more details. Run 'w32tm /resync' to force an instant time synchronization.

Under Control Panel, Date and Time, The Internet Time Settings are set to synchronize with time-nw.nist.gov ; the last successful sync was 2 days ago, indicating there's some kind of problem. But if I click the "update now" button on that dialog, indeed, it updates with the time!

So why can't windows server reliably time sync via NTP in the background without me manually intervening? What am I doing wrong?

link|improve this question

You're not alone Jeff – jkp Apr 30 '09 at 18:17
Looks like this might not be an option for domain controllers. – user640 Apr 30 '09 at 19:07
1  
Welcome to Windows SNTP hell. DLL Hell is just around the corner and there is a tram on the half hour. The deli is better here though. – Scott Alan Miller Apr 30 '09 at 19:44
2  
Have you tried a different NTP server? us.pool.ntp.org – stukelly Apr 30 '09 at 20:17
Thank you for posting this. If anyone in Windows land is listening, please make basic network config like this easier for us! There are certain things our servers will always need, like an accurate time relative to the timezone. There might be non-trivial considerations that I'm not aware of but this is a recurrent issue, and also breaks WSUS if left unchecked. – Andrew H May 5 '09 at 0:42
feedback

3 Answers

up vote 12 down vote accepted

Jeff, I found this article. Might be of some help to you. You might have already read this but I thought it was worth a shot.

HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Config\AnnounceFlags

This registry entry controls whether the local computer is marked as a reliable time server (which is only possible if the previous registry entry is set to NTP as described above). Change this REG_DWORD value from 10 to 5 here.

UPDATE As per Jeff, best source of reference is http://support.microsoft.com/kb/816042

link|improve this answer
weird, so you mark it as "not reliable", lol. OK, I made this change, let's see if it helps. – Jeff Atwood Apr 30 '09 at 18:58
2  
KB 816042: "... and uses the built-in complementary metal oxide semiconductor (CMOS) clock" - don't you just love technical editors? – Duncan Smart May 7 '09 at 12:19
feedback

Windows Time Agent is a free control panel applet for configuring the NTP server/synchronization ability of Windows. It acts as a front-end to the registry settings and lets you configure multiple NTP servers and see what sort of results you are getting from them in real-time.

Not many people know about this particularly handy (and free) piece of software, but it's a must-install on servers I maintain.

link|improve this answer
Thanks a lot mate. Windows Time Agent is a gem. It just became a must-have install on all the servers I manage as well. – paracycle Jan 19 '10 at 15:32
feedback

When synchronized time is important, I use NTPD for windows

http://www.meinberg.de/english/sw/ntp.htm

I install it, point it at north-america.pool.ntp.org and forget it

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.