Setting up NTP for Server 2000 DC

Problem

You need to setup NTP on a Windows 2000 Server, then resync other servers (2000 and 2003 servers) to that one.

Solution

  1. First, query the current settings:
    net time /querysntp
  2. Set the NTP source server:
    net time /setsntp:uk.pool.ntp.org
  3. Stop and Start the Windows Time service:
    net stop w32time && net start w32time
  4. Force a resync on Win 2000 servers:
    w32tm -s
  5. Force a resync on Win 2003 servers:
    w32tm /resync

Source