| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| WINtp_V1.9.zip | 2025-12-20 | 13.4 kB | |
| WINtp source code.tar.gz | 2025-12-20 | 53.3 kB | |
| WINtp source code.zip | 2025-12-20 | 56.1 kB | |
| Totals: 3 Items | 122.9 kB | 3 | |
WINtp — NTP time synchronization client, providing a faster implementation for time synchronization.
It is a simple clock synchronization tool, currently suitable for Windows operating systems
Because the default time synchronization in Windows seems a bit slow,
I created this tool. It now supports retrieving time from websites using the TCP protocol over HTTP(s).
Downloads
How to use it?
Typically, you just need to double-click to run it. The software has no UI interface; it will automatically synchronize the system time after starting.
Once completed, it exits immediately and runs no background processes.
It is recommended to install it as a system service, but you can also set it as a startup item according to your preference.
Configuration
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="AutoSyncTime" value="false" />
<!-- The "Automatic Time Synchronization" switch will not sync the system time if commented out or set to false (to prevent antivirus false positives).-->
<add key="Verbose" value="false" /> <!-- Print logs in Event Manager -->
<add key="UseSsl" value="false" /> <!-- Using the HTTPS protocol -->
<add key="Delay" value="3600" /> <!-- Time synchronization period, default 3600 seconds. -->
<add key="Timeout" value="30000" /> <!-- The timeout for a single request is 30,000 milliseconds (30 seconds) by default. -->
<add key="Ntps" value="time.asia.apple.com;ntp.tencent.com;ntp.aliyun.com;rhel.pool.ntp.org;" /> <!-- NTP Servers -->
<add key="Urls" value="www.baidu.com;www.qq.com;www.google.com;" /> <!-- WebWebsite domain -->
</appSettings>
</configuration>
