Windows时间同步方法

1.使用Windows自带的时钟设置

参考:https://help.aliyun.com/document_detail/51890.html?spm=a2c4g.11186623.4.3.2de36ce18yqTP5

备份:http://putpan.com/fs/6ww5wi4o047f51/

文档72页

常用稳定的时间同步NTP服务器(池)

2.使用命令行

选择合适的NTP服务器替换下面的“服务器地址”,将其保存为*.bat或*.cmd,使用管理员省份运行。

常用稳定的时间同步NTP服务器(池)

@echo off
echo 必须使用管理员身份运行
sc config W32Time start= delayed-auto
net start W32Time
::服务器地址:https://blog.csdn.net/weixin_42588262/article/details/82501488
w32tm /config /manualpeerlist:"服务器地址" /syncfromflags:manual /reliable:yes /update
w32tm /resync
pause

阿里云:https://help.aliyun.com/knowledge_detail/41007.html?spm=a2c4g.11186623.4.2.2de36ce18yqTP5

3.使用时间同步软件

时间同步软件和相关网站

猜你喜欢

转载自blog.csdn.net/weixin_42588262/article/details/82587952