Keeping accurate time across your Windows Server systems is not just a matter of precision—it’s critical for security, logging, authentication, and scheduled tasks. Luckily, configuring your Windows Server to query an external NTP (Network Time Protocol) server can be done in just a few minutes. In this guide, we’ll walk you through the simple steps required to set up your server to stay synchronized with accurate time sources on the internet.
Why Time Synchronization Matters
Imagine trying to troubleshoot a security breach only to find that timestamps across your logs don’t match. Or running a scheduled task that executes too early or too late due to time drift. Consistent and correct time settings eliminate these problems. More importantly, services like Kerberos authentication rely on synchronized clocks to function properly.
By default, domain-joined Windows Servers synchronize time with domain controllers. However, for standalone servers or domain controllers themselves, you’ll want to configure synchronization with an external and reliable NTP source.

What You’ll Need
Before jumping into the configurations, ensure you have:
- Administrator privileges on the Windows Server
- Access to Command Prompt or PowerShell
- IP address or hostname of a reliable NTP server (e.g., time.windows.com, pool.ntp.org)
Step-by-Step: Configuring the NTP Client
Here’s how you can configure your Windows Server to use an external NTP server in under 10 minutes:
- Open Command Prompt as Administrator
Click on Start, type cmd, right-click and choose Run as administrator. - Stop the Windows Time Service
Before changing settings, stop the time service.
net stop w32time
- Configure the NTP Server
Run the following command to set your NTP source. Replace your.ntp.server with your desired NTP address:
w32tm /config /manualpeerlist:"your.ntp.server" /syncfromflags:manual /reliable:yes /update
For example, using the NTP Pool Project:
w32tm /config /manualpeerlist:"pool.ntp.org" /syncfromflags:manual /reliable:yes /update
- Restart the Windows Time Service
net start w32time
- Resync the Time
You can now force a time synchronization using:
w32tm /resync
If successful, you’ll get a message confirming the time has been synced.
Verify Synchronization
To make sure your server is correctly syncing with the NTP server, use the following command:
w32tm /query /status
This will return details including the last sync time, source, and stratum level. You can also check:
w32tm /query /configuration
Both commands help confirm your server trusts and communicates with the specified NTP source.

Troubleshooting Tips
If your server doesn’t synchronize correctly, check these common issues:
- Firewall Settings – Ensure UDP port 123 is open to allow NTP communication.
- Incorrect Server Address – Double-check that you used a valid NTP server hostname or IP.
- Time Service Not Running – Make sure the Windows Time (w32time) service is running.
- DNS Issues – If using a hostname, confirm your server can resolve it via DNS.
Choosing Reliable NTP Servers
Picking the right NTP server is important. You can use:
- time.windows.com – Default Microsoft NTP server.
- pool.ntp.org – Community-powered pool of servers.
- Your ISP’s or organization’s local NTP server
Using multiple NTP servers in the manual peer list (separated by spaces) ensures redundancy. Like so:
w32tm /config /manualpeerlist:"0.pool.ntp.org 1.pool.ntp.org" /syncfromflags:manual /reliable:yes /update
In Conclusion
As you can see, getting your Windows Server to synchronize with an external NTP server is both straightforward and fast. It takes just a few commands to lock your system’s clock to a reliable source, ensuring smooth operations across your applications and services.
One small configuration leads to one giant leap in system reliability!