{"id":77098,"date":"2025-12-15T17:09:47","date_gmt":"2025-12-15T16:09:47","guid":{"rendered":"https:\/\/jotelulu.com\/en-gb\/blog\/"},"modified":"2025-12-15T17:10:27","modified_gmt":"2025-12-15T16:10:27","slug":"windows-server-time-troubleshooting","status":"publish","type":"post","link":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/","title":{"rendered":"How to configure and troubleshoot time issues in Windows Server?"},"content":{"rendered":"\r\n\r\nHow to troubleshoot time issues in Windows Server? Time services are far more useful and important than most people think. Some technicians may not pay much attention to them, probably because they have not yet experienced major issues in critical services caused by poor time synchronization.\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\"><strong>What are time services?<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\n<strong>Time services<\/strong> are responsible for ensuring that the time on <strong>our systems is synchronized<\/strong> with a <strong>central source<\/strong>, which is usually an external server from a trusted source.\r\n\r\n\r\n\r\n\r\n\r\nAmong other things, these services ensure that <strong>all servers and all client machines<\/strong> have the <strong>same time<\/strong>. This is especially critical in infrastructures running Active Directory Domain Services (AD DS), where a machine with a different time <strong>can cause issues<\/strong> and may display the message \u201cThe trust relationship between this workstation and the primary domain failed,\u201d which every administrator has seen at some point in their professional life.\r\n\r\n\r\n\r\n\r\n\r\nAll computers, both servers and clients, that belong to a domain synchronize their time from the <strong>Domain Controller (DC)<\/strong> that acts as the <strong>PDC (Primary Domain Controller)<\/strong>. However, we may encounter systems whose synchronization source has been changed for some reason, for example, to authenticate against another service or due to an operational error.\r\n\r\n\r\n\r\n\r\n\r\nThe only element in the domain that does not take its time from the PDC is the PDC itself, which, as the root of the domain forest, synchronizes its time from an external source.\r\n\r\n\r\n\r\n\r\n\r\nWhen dealing with time issues and how to address them, we will distinguish between two different types:\r\n\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n \t<li><strong>On legacy systems.<\/strong> Systems such as Windows Server 2003, Windows Server 2008, or Windows Server 2012, which due to their age have older or more limited versions of <a href=\"https:\/\/learn.microsoft.com\/es-es\/powershell\/\" target=\"_blank\" rel=\"noopener\">PowerShell<\/a>. On these systems, we will use solutions based on Windows \u201ccommand\u201d or registry keys, although some PowerShell commands may work.<\/li>\r\n \t<li><strong>On modern systems.<\/strong> Operating systems such as Windows Server 2016, Windows Server 2019, or Windows Server 2022. These include the latest versions of PowerShell, allowing us to work directly with PowerShell commands, although legacy \u201ccommand\u201d commands will also work.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"wp-block-heading\"><strong>Checking the status of the time service:<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\n\r\n\r\nOne of the first things we can do to <strong>check the status of the time services<\/strong> on our server is to review the registry configuration.\r\n\r\n\r\n\r\n\r\n\r\nThe registry configuration can be checked in several ways. The first and most traditional is to manually review the status, that is, by <strong>opening the Registry Editor<\/strong> (regedit.exe) and navigating the following path: <strong>HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters<\/strong>\r\n\r\n\r\n\r\n\r\n<figure><img decoding=\"async\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Valores-del-servicio-de-tiempo-de-Windows-en-el-Editor-de-Registro-1.jpg\" alt=\"\" \/><figcaption>Windows time service values in the Registry Editor<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\nA faster way is to use the <strong>\u201creg query\u201d command<\/strong>, which performs <strong>direct queries<\/strong> against the system registry. To do this, simply enter the following command at the command line, either in the classic Windows CMD or in PowerShell.\r\n\r\n\r\n\r\n\r\n\r\n# reg query HKLMSYSTEMCurrentControlSetServicesW32TimeParameters\r\n\r\n\r\n\r\n\r\n<figure><img decoding=\"async\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/07\/Comparacion-de-consulta-al-registro-de-Windows-en-CMD-y-PowerShell-1.jpg\" alt=\"\" \/><figcaption>Comparison of Windows registry queries in CMD and PowerShell<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\nAnother way to view the service status is by using the <strong>\u201cw32tm \/query \/peers\u201d command<\/strong>, which makes a <strong>direct query to the time service<\/strong>, asking it which servers it synchronizes with. Again, this command can be run from both the Windows command line and PowerShell.\r\n\r\n\r\n\r\n\r\n<figure><img decoding=\"async\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/07\/Consulta-de-los-servidores-de-sincronizacion-y-el-estado-del-servicio-de-hora-1.jpg\" alt=\"\" \/><figcaption>Querying synchronization servers and time service status<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\nThe final way to view the configuration and status is by using <strong>PowerShell<\/strong> directly, specifically the <strong>\u201cGet-ItemProperty\u201d command<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\n# Get-ItemProperty -Path &#8220;HKLM:SYSTEMCurrentControlSetServicesw32timeTimeProvidersNtpServer&#8221;\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<figure><img decoding=\"async\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Consulta-de-estado-de-la-sincronizacion-de-hora-desde-PowerShell-2.jpg\" alt=\"\" \/><figcaption>Querying time synchronization status from PowerShell<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"wp-block-heading\"><strong>Starting and stopping time services:<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\n\r\n\r\nSometimes services end up in an indeterminate state\u2014put simply, they get \u201cstuck\u201d\u2014and restarting them is necessary to normalize their status, which is the most common solution.\r\n\r\n\r\n\r\n\r\n\r\nAs usual, there are several ways to fix these time issues, and here we will explain a couple of them.\r\n\r\n\r\n\r\n\r\n\r\nThe first way is by using the <strong>\u201cnet\u201d command<\/strong>, which has long accompanied Microsoft system administrators.\r\n\r\n\r\n\r\n\r\n\r\nYou can stop and start the service as follows:\r\n\r\n\r\n\r\n\r\n\r\n# net stop w32time\r\n\r\n\r\n\r\n\r\n\r\n# net start w32time\r\n\r\n\r\n\r\n\r\n\r\nThese commands can be executed from either CMD or PowerShell.\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<figure><img decoding=\"async\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Reinicio-del-servicio-de-tiempo-haciendo-uso-del-comando-net-1.jpg\" alt=\"\" \/><figcaption>Restarting the time service using the \u201cnet\u201d command<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\nIf you want to restart the time service from a system that supports PowerShell, you can use service management commands such as \u201cStop-Service\u201d, \u201cStart-Service\u201d, or \u201cRestart-Service\u201d, executing directly:\r\n\r\n\r\n\r\n\r\n\r\n# Restart-Service w32Time\r\nOr\r\n\r\n\r\n\r\n\r\n\r\n# Stop-Service w32Time\r\n# Start-Service w32Time\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<figure><img decoding=\"async\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Parada-arranque-y-reinicio-de-servicio-de-hora-desde-PowerShell-1.jpg\" alt=\"\" \/><figcaption>Stopping, starting, and restarting the time service from PowerShell<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\"><strong>Reconfiguring time services:<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\n\r\n\r\nAs expected, when <strong>configuring Windows Server time services<\/strong>, we can proceed in several ways:\r\n\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n \t<li>We can directly modify <strong>registry keys manually<\/strong>, which can be very tedious, especially if multiple services need changes.<\/li>\r\n \t<li>We can use a <strong>script to write values<\/strong> to the registry.<\/li>\r\n \t<li>We can use <strong>legacy \u201ccommand\u201d commands<\/strong>.<\/li>\r\n \t<li>We can use <strong>PowerShell commands<\/strong> on servers that support it.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\"><\/h3>\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\"><strong>Configuring the time service by manually editing the registry:<\/strong><\/h3>\r\n\r\n\r\n\r\n\r\nThis is a process that, although I have done it more than once without issues, I would not recommend unless we are working on an old system where no other option is available.\r\n\r\n\r\n\r\n\r\n\r\nIf we want to edit the registry manually, we must <strong>start the Registry Editor (RegEdit)<\/strong> from Run, search for it in the Start menu, or browse to \u201cC:Windows\u201d and locate the executable, which is not something we usually do.\r\n\r\n\r\n\r\n\r\n\r\n<em><strong>NOTE:<\/strong> Whenever reconfiguring the Windows registry, it is recommended to make a backup so it can be restored from Safe Mode if necessary.<\/em>\r\n\r\n\r\n\r\n\r\n\r\nThen, we must <strong>navigate to the branch<\/strong> where we want to make the changes, in this case <strong>\u201cHKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeConfig\u201d<\/strong>, and enter them manually, with the risk of making mistakes.\r\n\r\n\r\n\r\n\r\n\r\nThe parameters to configure should be:\r\n\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n \t<li>MaxNegPhaseCorrection=dword:ffffffff<\/li>\r\n \t<li>MaxPosPhaseCorrection=dword:00000e10<\/li>\r\n \t<li>AnnounceFlags=dword:00000005<\/li>\r\n \t<li>[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters]<\/li>\r\n \t<li>Type=NTP<\/li>\r\n \t<li>NtpServer= hora.rediris.es,0x1<\/li>\r\n \t<li>[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProviders]<\/li>\r\n \t<li>NtpServer=dword:00000001<\/li>\r\n \t<li>[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpClient]<\/li>\r\n \t<li>SpecialPollInterval=dword:00000384<\/li>\r\n \t<li>[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpServer]<\/li>\r\n \t<li>Enabled=dword:00000001<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n\r\nWhere <strong>NtpServer=hora.rediris.es,0x1<\/strong> contains the <strong>server address<\/strong> used for synchronization.\r\n\r\n\r\n\r\n\r\n\r\n<em><strong>NOTE:<\/strong> In this case, a RedIris time server, \u201chora.rediris.es\u201d, has been chosen, but there are countless servers available, such as those from Microsoft, Google, or government entities. To find them, simply search the internet for \u201cNTP servers\u201d or similar.<\/em>\r\n\r\n\r\n\r\n\r\n<figure><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Edicion-de-la-configuracion-de-tiempo-en-el-registro-de-Windows-1.jpg\" alt=\"Troubleshooting Windows Server time issues, editing time configuration\" width=\"1404\" height=\"835\" \/><figcaption>Editing time configuration in the Windows registry<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\nThis same procedure can be made slightly more automated by <strong>creating a plain text file<\/strong> (typical Notepad) with the following content, which is identical to the previous step.\r\n\r\n\r\n\r\n\r\n\r\nEGEDIT4\r\n[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeConfig]\r\n\u00abMaxNegPhaseCorrection\u00bb=dword:ffffffff\r\n\u00abMaxPosPhaseCorrection\u00bb=dword:00000e10\r\n\u00abAnnounceFlags\u00bb=dword:00000005\r\n[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters]\r\n\u00abType\u00bb=\u00bbNTP\u00bb\r\n\u00abNtpServer\u00bb=\u00bbtime.windows.com,0x1\u00bb\r\n[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProviders]\r\n\u00abNtpServer\u00bb=dword:00000001\r\n[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpClient]\r\n\u00abSpecialPollInterval\u00bb=dword:00000384\r\n[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpServer]\r\n\u00abEnabled\u00bb=dword:00000001\r\n\r\n\r\n\r\n\r\n\r\nThe file must be <strong>saved with the \u201c.reg\u201d extension<\/strong> and then the <strong>\u201cregedit\u201d command<\/strong> must be run for the configuration to take effect.\r\n\r\n\r\n\r\n\r\n\r\n# regedit \/s ARCHIVO.reg\r\n\r\n\r\n\r\n\r\n\r\nFor example:\r\n\r\n\r\n\r\n\r\n\r\n# regedit \/s f:ntpconfig.reg\r\n\r\n\r\n\r\n\r\n\r\nAfter this, the service or the system should be restarted to verify that everything is working correctly.\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\"><strong>Registry configuration using commands:<\/strong><\/h3>\r\n\r\n\r\n\r\n\r\nA much simpler way is to use <strong>Windows \u201ccommand\u201d commands<\/strong>, the classic ones. The commands we will use are the <strong>classic time management commands, \u201cnet\u201d and \u201cw32tm\u201d.<\/strong>\r\n\r\n\r\n\r\n\r\n\r\nIn this process, the first thing we should always do is check the status of the time service to <strong>see if it is running<\/strong> and where it is synchronizing from:\r\n\r\n\r\n\r\n\r\n\r\n# w32tm \/query \/peers\r\n\r\n\r\n\r\n\r\n\r\nOnce done, we can <strong>verify that the server to be configured is reachable<\/strong> using a <strong>ping<\/strong>. When confirmed, we can <strong>run the following configuration command<\/strong>:\r\n\r\n\r\n\r\n\r\n\r\n# w32tm \/config \/syncfromflags:MANUAL \/manualpeerlist:SERVIDOR_NTP\r\n\r\n\r\n\r\n\r\n\r\nWhere <strong>SERVIDOR_NTP<\/strong> must be <strong>replaced with the server<\/strong> we want to synchronize with, for example <strong>\u201chora.rediris.es\u201d<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\n# w32tm \/config \/syncfromflags:MANUAL \/manualpeerlist:hora.rediris.es\r\n\r\n\r\n\r\n\r\n\r\n<em><strong>NOTE:<\/strong> If you receive an error such as \u201cError: missing parameter : \/syncfromflags\u201d or similar, the issue may be due to a space after the \u201c:\u201d. This can occur in both \u201c\/syncfromflags:\u201d and \u201c\/manualpeerlist:\u201d.<\/em>\r\n\r\n\r\n\r\n\r\n\r\nAfter entering the new value, the change will not take effect unless the <strong>service is restarted<\/strong>, so the following commands must be executed:\r\n\r\n\r\n\r\n\r\n\r\n# net stop w32time\r\n# net start w32time\r\n\r\n\r\n\r\n\r\n\r\nFinally, it is recommended to perform a <strong>new synchronization query<\/strong> to verify that the service is running correctly and where it is synchronizing time from:\r\n\r\n\r\n\r\n\r\n\r\n# w32tm \/query \/peers\r\n\r\n\r\n\r\n\r\n<figure><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Configuramos-la-hora-mediante-comandos-en-el-CMD-1.jpg\" alt=\"Troubleshooting Windows Server time issues, configuring\" width=\"1377\" height=\"778\" \/><figcaption>Configuring time using commands in CMD<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\nWith this, the service should now be correctly configured.\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\"><strong>Registry configuration using PowerShell:<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\nIf you are running a <strong>modern system<\/strong>, the best option is to <strong>use PowerShell<\/strong>, as it is the most powerful console and one we should get used to using.\r\n\r\n\r\n\r\n\r\n\r\nThe first step is to <strong>check the Windows registry configuration<\/strong> for the time service, specifically using the <strong>\u201cGet-ItemProperty\u201d command<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\n# Get-ItemProperty -Path &#8220;HKLM:SYSTEMCurrentControlSetServicesw32timeTimeProvidersNtpServer&#8221;\r\n\r\n\r\n\r\n\r\n\r\nIf the service is not enabled, it <strong>must be enabled<\/strong> using the <strong>\u201cSet-ItemProperty\u201d command<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\n# Set-ItemProperty -Path &#8220;HKLM:SYSTEMCurrentControlSetServicesw32timeTimeProvidersNtpServer&#8221; -Name \u201cEnabled\u201d -Value 1\r\n\r\n\r\n\r\n\r\n\r\n# Set-ItemProperty -Path &#8220;HKLM:SYSTEMCurrentControlSetServicesw32timeTimeProvidersNtpServer&#8221; -Name \u201cAnnounceFlags\u201d -Value 5\r\n\r\n\r\n\r\n\r\n\r\nFinally, <strong>restart<\/strong> the service using the <strong>\u201cRestart-Service\u201d command<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\n# Restart-Service w32Time\r\n\r\n\r\n\r\n\r\n\r\nWith this, the service will be configured.\r\n\r\n\r\n\r\n\r\n<figure><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2022\/09\/Configuramos-la-hora-mediante-comandos-de-PowerShell-1.jpg\" alt=\"Troubleshooting Windows Server time issues\" width=\"1379\" height=\"780\" \/><figcaption>Configuring time using PowerShell commands<\/figcaption><\/figure>\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"wp-block-heading\"><strong>Common time service issues:<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\nA fairly common issue is encountering systems that have lost trust due to a failure of the <strong>motherboard battery<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\nTherefore, when we encounter this type of issue, the first thing to check is <strong>the BIOS time<\/strong>. If an unusual time such as \u201c01\/01\/2000\u201d appears, the battery should be replaced, the BIOS time reset, and the system restarted to see if the issue is resolved, which is usually the case.\r\n\r\n\r\n\r\n\r\n\r\nAnother classic source of time service issues is <strong>firewalls<\/strong> with very restrictive rules. It is recommended to check whether <strong>UDP port 123<\/strong> is open and, if not, to open it.\r\n\r\n\r\n\r\n\r\n\r\nOn domain-joined systems, there is also the possibility that the machine has entered an unstable state and needs to be <strong>removed from the domain<\/strong> and <strong>rejoined<\/strong>.\r\n\r\n\r\n\r\n\r\n\r\nMost other errors are usually related to poor time service configuration, which can be resolved by <strong>reconfiguring the service<\/strong> as shown in the previous sections.\r\n\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\"><\/h2>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\"><strong>Conclusions on how to troubleshoot time issues:<\/strong><\/h2>\r\n\r\n\r\n\r\n\r\nAs we have seen, having our systems\u2019 time properly configured\u2014maintaining not only correct settings but also consistency between them\u2014is a top priority. Therefore, we should regularly review configurations, monitor them if possible, and know how to troubleshoot common time issues that may arise.\r\n\r\n\r\n\r\n\r\n\r\nThroughout this article, we have discussed the importance of the service, some of the most common problems, and how to check its status, restart it, or even reconfigure it.\r\n\r\n\r\n\r\n\r\n\r\nWe hope this information is useful if you encounter any issues of this type. <strong>Thank you for reading!<\/strong>\r\n\r\n","protected":false},"excerpt":{"rendered":"<p>How to troubleshoot time issues in Windows Server? Time services are far more useful and important than most people think. Some technicians may not pay much attention to them, probably because they have not yet experienced major issues in critical services caused by poor time synchronization. &nbsp; What are time services? Time services are responsible [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":77101,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[278],"tags":[],"class_list":["post-77098","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-and-systems"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Configure and Troubleshoot Time Issues in Windows Server<\/title>\n<meta name=\"description\" content=\"Configure and troubleshoot time synchronization issues in Windows Server using NTP, CMD and PowerShell to avoid domain and security problems.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Configure and Troubleshoot Time Issues in Windows Server\" \/>\n<meta property=\"og:description\" content=\"Configure and troubleshoot time synchronization issues in Windows Server using NTP, CMD and PowerShell to avoid domain and security problems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/\" \/>\n<meta property=\"og:site_name\" content=\"Jotelulu\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-15T16:09:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-15T16:10:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Problemas-de-hora-de-Windows-Server-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"810\" \/>\n\t<meta property=\"og:image:height\" content=\"480\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Juan Ignacio Oller Aznar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Juan Ignacio Oller Aznar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/\"},\"author\":{\"name\":\"Juan Ignacio Oller Aznar\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\"},\"headline\":\"How to configure and troubleshoot time issues in Windows Server?\",\"datePublished\":\"2025-12-15T16:09:47+00:00\",\"dateModified\":\"2025-12-15T16:10:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/\"},\"wordCount\":1734,\"image\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Problemas-de-hora-de-Windows-Server-1.png\",\"articleSection\":[\"Cloud and Systems\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/\",\"name\":\"How to Configure and Troubleshoot Time Issues in Windows Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Problemas-de-hora-de-Windows-Server-1.png\",\"datePublished\":\"2025-12-15T16:09:47+00:00\",\"dateModified\":\"2025-12-15T16:10:27+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\"},\"description\":\"Configure and troubleshoot time synchronization issues in Windows Server using NTP, CMD and PowerShell to avoid domain and security problems.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Problemas-de-hora-de-Windows-Server-1.png\",\"contentUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Problemas-de-hora-de-Windows-Server-1.png\",\"width\":810,\"height\":480},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/windows-server-time-troubleshooting\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to configure and troubleshoot time issues in Windows Server?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#website\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/\",\"name\":\"Jotelulu\",\"description\":\"Cloud Paradise for Tech Companies\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\",\"name\":\"Juan Ignacio Oller Aznar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"caption\":\"Juan Ignacio Oller Aznar\"},\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/author\\\/juanignaciooller\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Configure and Troubleshoot Time Issues in Windows Server","description":"Configure and troubleshoot time synchronization issues in Windows Server using NTP, CMD and PowerShell to avoid domain and security problems.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/","og_locale":"en_GB","og_type":"article","og_title":"How to Configure and Troubleshoot Time Issues in Windows Server","og_description":"Configure and troubleshoot time synchronization issues in Windows Server using NTP, CMD and PowerShell to avoid domain and security problems.","og_url":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/","og_site_name":"Jotelulu","article_published_time":"2025-12-15T16:09:47+00:00","article_modified_time":"2025-12-15T16:10:27+00:00","og_image":[{"width":810,"height":480,"url":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Problemas-de-hora-de-Windows-Server-1.png","type":"image\/png"}],"author":"Juan Ignacio Oller Aznar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Juan Ignacio Oller Aznar","Estimated reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#article","isPartOf":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/"},"author":{"name":"Juan Ignacio Oller Aznar","@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9"},"headline":"How to configure and troubleshoot time issues in Windows Server?","datePublished":"2025-12-15T16:09:47+00:00","dateModified":"2025-12-15T16:10:27+00:00","mainEntityOfPage":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/"},"wordCount":1734,"image":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#primaryimage"},"thumbnailUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Problemas-de-hora-de-Windows-Server-1.png","articleSection":["Cloud and Systems"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/","url":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/","name":"How to Configure and Troubleshoot Time Issues in Windows Server","isPartOf":{"@id":"https:\/\/jotelulu.com\/en-gb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#primaryimage"},"image":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#primaryimage"},"thumbnailUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Problemas-de-hora-de-Windows-Server-1.png","datePublished":"2025-12-15T16:09:47+00:00","dateModified":"2025-12-15T16:10:27+00:00","author":{"@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9"},"description":"Configure and troubleshoot time synchronization issues in Windows Server using NTP, CMD and PowerShell to avoid domain and security problems.","breadcrumb":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#primaryimage","url":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Problemas-de-hora-de-Windows-Server-1.png","contentUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Problemas-de-hora-de-Windows-Server-1.png","width":810,"height":480},{"@type":"BreadcrumbList","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/windows-server-time-troubleshooting\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jotelulu.com\/en-gb\/"},{"@type":"ListItem","position":2,"name":"How to configure and troubleshoot time issues in Windows Server?"}]},{"@type":"WebSite","@id":"https:\/\/jotelulu.com\/en-gb\/#website","url":"https:\/\/jotelulu.com\/en-gb\/","name":"Jotelulu","description":"Cloud Paradise for Tech Companies","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jotelulu.com\/en-gb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9","name":"Juan Ignacio Oller Aznar","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","caption":"Juan Ignacio Oller Aznar"},"url":"https:\/\/jotelulu.com\/en-gb\/author\/juanignaciooller\/"}]}},"_links":{"self":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/77098","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/comments?post=77098"}],"version-history":[{"count":2,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/77098\/revisions"}],"predecessor-version":[{"id":77114,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/77098\/revisions\/77114"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/media\/77101"}],"wp:attachment":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/media?parent=77098"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/categories?post=77098"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/tags?post=77098"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}