NTP sync on Windows Server 2008

10,547

You do not need any outside software, just use this document to show you how to configure it natively:

http://support.microsoft.com/kb/816042 (read the section "Configuring the Windows Time service to use an external time source")

Share:
10,547

Related videos on Youtube

Jonathan
Author by

Jonathan

Updated on September 18, 2022

Comments

  • Jonathan
    Jonathan over 1 year

    How would you make a Windows Server 2008 server sync with free ntp servers on the Internet?

    What free programs would do this?
    How do you configure them? (I need it to sync every 30sec as the server's clock drifts very very fast ~1sec per 40min)

    Update: See follow up question

  • hicklypups
    hicklypups almost 13 years
    As a note, if you are doing this on a Microsoft domain, a relatively easy way to synchronize the clients is to add this line to your logon batch file: net time \\servername /set /yes . Of course, if they never logon, it will not work. You can also set clients to use it in group policy.
  • JdeBP
    JdeBP almost 13 years
    That's a bit out of date. net time has been deprecated for over 5 years now. The questioner did ask for NTP synchronization, moreover. net time uses an RPC protocol, not NTP. The way to do this with NTP on a domain member workstation is w32tm /resync and have the domain member run the w32time service, which (being a service and not a logon script) doesn't need logon events in order to work.
  • hicklypups
    hicklypups almost 13 years
    I just said "easy", not best.
  • Jonathan
    Jonathan almost 13 years
    Notice to also set the UpdateInterval under the Config section, as explained in the comment to the answer in this question: superuser.com/questions/308163/ntp-sync-doesnt
  • hicklypups
    hicklypups almost 13 years
    @Jonathan Thanks for marking the answers. I appreciate it.