-3

OS - a) Windows Server 2008 Standard Workgroup

OS - b) Window Server 2008 Standard Domain controller.

How can i know, from where my Server is synchronizing time with?

Is it through Hardware BIOS or through External Time Source such as time.windows.com?

Param
  • 1,357
  • 14
  • 36
  • 52
  • 3
    Hi MDMarra, Ward, Greg Askey, gWaldo, mdpc. First of all Sorry for asking this question, but i am unable to understand, in which way my question is ambiguous or vague? – Param May 21 '13 at 05:18
  • 5
    I got the answer it simple. Just type w32tm /query /source – Param May 24 '13 at 14:37

2 Answers2

1

How can i know, from where my Server is synchronizing time with?

Open a command prompt as an Administrator and run:

w32tm /query /configuration

Look at the NTP source.

TheCleaner
  • 32,627
  • 26
  • 132
  • 191
0

The default service in Windows which typically synchronises time is the W32Time service, whose configuration parameters are situated in the registry at HKLM\SYSTEM\CurrentControlSet\Services\W32Time. That will give you some insight into how time synchronisation is taking place if the native Windows mechanism is in use.

Additionally, you can also look for events in the System event log - typically around system start - which will be logged if and when the system has synchronised with some external time source using the W32Time provider (other software tools may or may not have the same mechanism for logging).

There appears to be some confusion over terminology, though. Machines do not "synchronise" with their BIOS in the sense you are suggesting (although it could be argued that various clocks do have to be timed and set up on system start). The BIOS may represent a (local) source of time for a machine which otherwise does not have an upstream server to synchronise with. In particular, note that the domain controller in the forest root domain in possession of the PDC emulator operations role considers itself the most authoritative time source for the whole enterprise; it is effectively the clock to which all other machines should be synchronised for authentication protocols like Kerberos to work effectively, and whether you choose to synchronise its clock with an external time source to ensure its accuracy is entirely a personal choice (the environment will work perfectly fine if the time is not accurate).

Cosmic Ossifrage
  • 1,640
  • 14
  • 23