如何在 windows 中自动同​​步日期和时间?

How to automatically sync Date & Time in windows?

我想编写一个 .bat 文件,我可以在 Windows 中使用任务计划程序进行计划。 该脚本应打开时间设置并自动单击同步选项,如下所示:

到目前为止,我可以使用以下代码行打开此 window:

start ms-settings:dateandtime

但是我不知道如何点击“立即同步”按钮。

你知道完成这个任务的聪明而优雅的方法吗?如果最终结果相同,请随意提出完全不同的方法。

w32tm /resync 必须由管理员 运行 否则您会收到拒绝消息

有关其他选项的更多详细信息,请参阅 https://docs.microsoft.com/en-us/windows-server/networking/windows-time-service/windows-time-service-tools-and-settings

w32tm /resync
Sending resync command to local computer
The following error occurred: Access is denied. (0x80070005)

在域上然后使用

w32tm /domain

想使用与默认服务器不同的服务器吗?然后替换 time.server.com

w32tm /config /update /manualpeerlist:time.server.com

https://www.ntppool.org/en/use.html