+ Post New Thread
Results 1 to 15 of 15
Windows Server 2008 R2 Thread, Resetting Clocks in Technical; The system clocks on our server and PCs are wrong (a few minutes fast) - is there anything I need ...
  1. #1
    enjay's Avatar
    Join Date
    Apr 2007
    Location
    Reading, Berkshire, UK
    Posts
    3,955
    Thank Post
    244
    Thanked 159 Times in 135 Posts
    Rep Power
    55

    Resetting Clocks

    The system clocks on our server and PCs are wrong (a few minutes fast) - is there anything I need to be aware of/cautious about before I go changing these?

  2. IDG Tech News

  3. #2

    SYNACK's Avatar
    Join Date
    Oct 2007
    Posts
    7,558
    Blog Entries
    9
    Thank Post
    444
    Thanked 1,911 Times in 1,625 Posts
    Rep Power
    458
    Not more than five min change at one time if you still have some XP clients. Vista and 7 do their changes more smoothly.

  4. #3


    Join Date
    Mar 2009
    Location
    Leeds
    Posts
    3,493
    Thank Post
    134
    Thanked 473 Times in 412 Posts
    Rep Power
    149
    as long as you arnt changing them by massive ammounts and any domain you have trusts to has its clocks at a close enough time shouldnt be an issue

  5. #4
    Iain's Avatar
    Join Date
    Oct 2006
    Location
    Warwickshire
    Posts
    162
    Thank Post
    25
    Thanked 79 Times in 44 Posts
    Rep Power
    25
    Just be aware that Kerberos authentication / services will fail if the time difference between the server and the PCs is greater than a defined tolerance (default 5 minutes). Once all the clocks have been synced, then it should all work again.

    Iain.

  6. #5
    ricki's Avatar
    Join Date
    Jul 2005
    Location
    uk
    Posts
    1,206
    Thank Post
    19
    Thanked 129 Times in 125 Posts
    Rep Power
    41
    Hi

    Time sync your pcs with the server and then move the time on the server by less than 5 mins every couple of days till you get the time correct.

    It took me 2 months to get the time right here,

    Richard

  7. #6

    Join Date
    Apr 2008
    Posts
    828
    Thank Post
    106
    Thanked 112 Times in 108 Posts
    Rep Power
    41
    Well use this script on your dcs:

    net stop w32time
    w32tm /config /manualpeerlist:"0.uk.pool.ntp.org 1.uk.pool.ntp.org 2.uk.pool.ntp.org 3.uk.pool.ntp.org" /syncfromflags:manual /reliable:yes /update
    w32tm /config /reliable:yes
    net start w32time

    Also in dc group policy set servers to ntp

    in other pc/ servers group policy put ntsds

  8. #7

    glennda's Avatar
    Join Date
    Jun 2009
    Location
    The Office
    Posts
    5,434
    Thank Post
    236
    Thanked 696 Times in 629 Posts
    Rep Power
    226
    Quote Originally Posted by irsprint84 View Post
    Well use this script on your dcs:

    net stop w32time
    w32tm /config /manualpeerlist:"0.uk.pool.ntp.org 1.uk.pool.ntp.org 2.uk.pool.ntp.org 3.uk.pool.ntp.org" /syncfromflags:manual /reliable:yes /update
    w32tm /config /reliable:yes
    net start w32time

    Also in dc group policy set servers to ntp

    in other pc/ servers group policy put ntsds
    you may find the lea has a time server and access to others is blocked

  9. #8

    Join Date
    Apr 2008
    Posts
    828
    Thank Post
    106
    Thanked 112 Times in 108 Posts
    Rep Power
    41
    ah the joys of LEA

    just change o.uk.pool.ntp.org to whatever the LEA IP is

    Ian

  10. #9
    ricki's Avatar
    Join Date
    Jul 2005
    Location
    uk
    Posts
    1,206
    Thank Post
    19
    Thanked 129 Times in 125 Posts
    Rep Power
    41
    Hi

    A lot of the time you can only use the lea time server as they stop you accessing the web ones.

    As far as I remember you can set the ntp setting in gpo and you can set a ntp server in dhcp. I have had a problems setting a time server in gpo for xp and had to put
    NET TIME \\timeserver /SET /YES
    in a startup script.

    Richard

  11. #10

    Join Date
    Apr 2008
    Posts
    828
    Thank Post
    106
    Thanked 112 Times in 108 Posts
    Rep Power
    41
    microsoft now tells people to avoid ntp time in dhcp and I would advise against doing in script, best to do all with GPO

  12. #11
    enjay's Avatar
    Join Date
    Apr 2007
    Location
    Reading, Berkshire, UK
    Posts
    3,955
    Thank Post
    244
    Thanked 159 Times in 135 Posts
    Rep Power
    55
    They are only a few minutes out just now, so it sounds like I'll be okay...

  13. #12

    Join Date
    Apr 2008
    Posts
    828
    Thank Post
    106
    Thanked 112 Times in 108 Posts
    Rep Power
    41
    I would just fix it, I made that mistake and cost me dear!

  14. #13

    Michael's Avatar
    Join Date
    Dec 2005
    Location
    Birmingham
    Posts
    6,763
    Thank Post
    171
    Thanked 1,055 Times in 828 Posts
    Rep Power
    217
    With Windows Server 2008 R2, when promoted to a domain controller, this becomes your domain's own time server. There's a good discussion about it here

    I then run the following code once:

    Code:
    @echo off
    
    net stop w32time
    
    w32tm /config /syncfromflags:manual /manualpeerlist:ntp.bgfl.org
    
    w32tm /config /reliable:yes
    
    net start w32time
    
    w32tm /query /peers
    
    PAUSE
    When you join Windows 7 clients to a 2008 R2 domain, they'll automatically 'check in' to your 2008 R2 DC. You can verify this by running:

    Code:
    w32tm /query /peers
    from a command prompt on a Windows 7 client. It should report back something like:

    Peer: SERVERNAME.domain.domain
    State: Active
    Time Remaining: 860.6081351s
    Mode: 3 (Client)
    Stratum: 4 (secondary reference - syncd by (S)NTP)
    PeerPoll Interval: 12 (4096s)
    HostPoll Interval: 12 (4096s)
    You don't need to run any scripts or set any GPOs for the clients. It just works automatically.

  15. #14

    Join Date
    Apr 2008
    Posts
    828
    Thank Post
    106
    Thanked 112 Times in 108 Posts
    Rep Power
    41
    with GPO mine check in automatically every minute or as you can set in gpo

  16. #15

    Michael's Avatar
    Join Date
    Dec 2005
    Location
    Birmingham
    Posts
    6,763
    Thank Post
    171
    Thanked 1,055 Times in 828 Posts
    Rep Power
    217
    Every minute? What's the point setting it so frequently? Once every few days would easily be enough.

SHARE:
+ Post New Thread

Similar Threads

  1. apc powerchute buisness ed reset password
    By russdev in forum Windows
    Replies: 7
    Last Post: 8th November 2011, 01:35 PM
  2. Password Reset form for ICT staff
    By Rozzer in forum Windows
    Replies: 19
    Last Post: 8th May 2009, 03:14 PM
  3. Access points need resetting
    By Outpost in forum Networks
    Replies: 7
    Last Post: 20th February 2008, 04:47 PM
  4. Reset Sequence for HP BIJ 1200?
    By ChrisH in forum Hardware
    Replies: 11
    Last Post: 6th October 2005, 06:16 PM
  5. Replies: 12
    Last Post: 12th September 2005, 10:47 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •