Atomic Clock Sync?

BokehBokeh Member Posts: 1,636 ■■■■■■■□□□
Been searching, and haven't found any free utilities to sync individual users to the atomic clocks. Anyone point me in the right direction?

Comments

  • ClaymooreClaymoore Member Posts: 1,637
    No need for a separate utilitiy. I believe that by default individual Windows PCs will synchronize with time.windows.com (which is sync'd to the global UTC servers). You could change this to another server (tick or tock.usno.navy.mil are popular) with a registry edit:

    Key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters
    Value:
    NtpServer
    Data:
    time.windows.com,0x1
    (or other servers separated by commas)

    Restart the Windows Time Service and watch the event viewer for any W32Time errors.

    Domain PCs will automatically sync with the authenticating domain controller, which will sync with the PDC emulator for the domain, which will sync with the server set in the registry key above.
  • BokehBokeh Member Posts: 1,636 ■■■■■■■□□□
    Thanks I will try this. We have a lot of stand alone laptops we need to sync so the users can punch in/out each day. Ive already found a hack to stop them from changing time on their individual machines, which is very helpful.
  • EdTheLadEdTheLad Member Posts: 2,111 ■■■■□□□□□□
    Maybe you should try and do some research before you ask such questions, atomic clock, do you even know what a 1 or statum 2 is?
    Networking, sometimes i love it, mostly i hate it.Its all about the $$$$
  • JaggedJagged Member Posts: 67 ■■□□□□□□□□
    [FONT=Courier New][SIZE=3]net time /querysntp[/SIZE][/FONT]
    
    will show the current settings on Windows.
    [FONT=Courier New][SIZE=3]net time /setsntp:<NTP SERVER>[/SIZE][/FONT]
    
    will set new ones. Check ntp.org for your region.

    On systems I maintain I use the following which querys all four ntp.org U.S. pools.
    [SIZE=3]net time /setsntp:"0.us.pool.ntp.org 1.us.pool.ntp.org
    2.us.pool.ntp.org 3.us.pool.ntp.org"[/SIZE]
    
    After setting this on the command line you can restart the time service via
    [FONT=Courier New][SIZE=3]net stop w32time && net start w32time[/SIZE][/FONT]
    
    Microsoft: MCSE 4, MCSE 2003 +Security, MSCA 2003 Messaging, MCITP:SA -- Cisco: CCNA
    Novell: CNE 3-6, CLA, CLP, CLE -- Nortel: NCDS, NCSS -- CompTIA: Project+, Server+, Linux+, Security+


    Courses Completed at WGU:
    EWB2, BBC1, LAE1, WFV1, SSC1, CLC1, WDV1, MGC1, ORC1, INC1, IWC1
    Courses Required BS - IT: NETW:
    LAT1, LUT1, INT1, SST1, LET1, IWT1, BOV1, TWA1, CPW2
    Classes Transferred:
    BAC1, TEV1, TTV1, QLC1, QMC1, QLT1, TSV1, TPV1, TNV1, BRV1, ABV1, AHV1, AIV1, AJV1
  • undomielundomiel Member Posts: 2,818
    For more information query this article:
    Windows Time Service Tools and Settings: Windows Time Service
    Jumping on the IT blogging band wagon -- http://www.jefferyland.com/
  • ClaymooreClaymoore Member Posts: 1,637
    Jagged wrote: »
    [FONT=Courier New][SIZE=3]net time /querysntp[/SIZE][/FONT]
    
    will show the current settings on Windows.
    [FONT=Courier New][SIZE=3]net time /setsntp:<NTP SERVER>[/SIZE][/FONT]
    
    will set new ones. Check ntp.org for your region.

    On systems I maintain I use the following which querys all four ntp.org U.S. pools.
    [SIZE=3]net time /setsntp:"0.us.pool.ntp.org 1.us.pool.ntp.org[/SIZE]
    [SIZE=3]2.us.pool.ntp.org 3.us.pool.ntp.org"[/SIZE]
    
    After setting this on the command line you can restart the time service via
    [FONT=Courier New][SIZE=3]net stop w32time && net start w32time[/SIZE][/FONT]
    

    Thanks for the net time commands. I have always set this by script and can never remember what the net commands are.
Sign In or Register to comment.