2

Is it possible to configure a Windows Server 2000 OS to synchronize it's clock to a domain controller if it's not on the domain? If so, how would I go about doing that?

Just to be clear:

  • I can't join the machine to the domain.
  • The Windows Time service is running on the Server 2000 box.
  • All other servers and workstations properly sync their time to the domain controller already.
Cypher
  • 1,077
  • 2
  • 17
  • 24

3 Answers3

6

This should do the trick:

http://support.microsoft.com/kb/120944

joeqwerty
  • 109,901
  • 6
  • 81
  • 172
  • 1
    This'll do the trick. I should also add that this is only valid for Windows 2000 and older servers, as they implemented the cut-down time protocol sNTP. For Windows 2003 and XP upwards, net time is deprecated and w32tm is the tool you'll need to use, as these OS' implement a fully compliant NTP server/client service. – Chris Thorpe Oct 21 '10 at 03:28
  • Man I typed out my answer all nice and neat and then forgot to press the Submit button. +1 for providing a backup link though. – Mark Henderson Oct 21 '10 at 03:29
  • Actually, the Net Time command does work in W2K3 and W2K8. – joeqwerty Oct 21 '10 at 11:13
2

NET TIME \\servername /SET (where servername is a DC)

Mark Henderson
  • 68,823
  • 31
  • 180
  • 259
0

This command works, but if you're not yet joined to the domain, you need to put in an IP address in place of "servername".

Micah
  • 1