Windows Server 2012 R2 time resetting by 2 hours (-2 hours)

9,329

Well, this is what I would try. I would point it to internal NTP servers or some well-known ones on the internet. This should keep your server in sync. I would also check and make sure your timezone is correct.

Configure your server to sync with an NTP server.

net stop w32time
w32tm /config /syncfromflags:manual /manualpeerlist:"ntpserver1 ntpserver2"
net start w32time
w32tm /config /update
w32tm /resync /rediscover

or https://support.microsoft.com/en-us/help/816042/how-to-configure-an-authoritative-time-server-in-windows-server

I would also check BIOS and make sure your time settings are correct.

Share:
9,329

Related videos on Youtube

TheEwook
Author by

TheEwook

Java Enthusiasts who are interested in benefiting from shared knowledge in the industry

Updated on September 18, 2022

Comments

  • TheEwook
    TheEwook over 1 year

    The server doesn't host any VMs and doesn't belong in a domain.

    In the Windows "Date and Time" settings, I have the correct time zone and set the correct time. But after some hours when I connect back to the server, the time is wrong by 2 hours (-2 hours). Even deactivating "Internet Time" (auto-sync with the time server) does not help.

    When I go to the "Internet Time" tab and click the button to manually update the time with the time server, it shows the correct time as well. But after some hours, it is all wrong again.

    There is a similar question (Fix Windows Server 2012 R2 system time?) but it was a while back. perhaps somebody has a solution for this as this is causing us a lot of damaged as the time keeps changing.

    What can I do to fix the server's time?

  • moni9
    moni9 over 6 years
    Agreed, time must be the same everywhere and NTP server is always helps. pool.ntp.org/en/use.html
  • TheEwook
    TheEwook over 6 years
    The issue came from the BIOS. Changing the time from the bios or setting the time in windows with the same timezone than the BIOS fix the problem. Thanks for your help :)