Windows時間同步

2022-06-15 07:24:09 字數 875 閱讀 5132

1.配置pdc與外部時間源同步:

修改登錄檔 hkey_local_machine\system\currentcontrolset\services\w32time\parameters,

配置ntpserver值為 time.windows.com

配置預設同步週期:

hkey_local_machine\system\currentcontrolset\services\w32time\timeproviders\ntpclient

修改specialpollinterval值,預設1800s

新建dword鍵值  specialinterval =0x1  表示手動同步間隔生效

檢視當前計算機與時間源誤差:

w32tm /stripchart /computer:"time.windows.com" /samples:100 /dataonly

2.查詢時間源:

w32tm /query /source

3.手工指定時間源(內/外網均可),強制時鐘同步

w32tm /config /manualpeerlist:"10.10.3.21" /syncfromflags:manual /reliable:yes /update

net time \\10.10.3.21 /set /y(域內計算機使用)

4.重啟時鐘服務: net start w32time

net stop w32time 停掉時鐘服務

w32tm /unregister 時鐘服務取消註冊

w32tm /register 重新註冊時鐘服務,初始化時鐘配置資訊

Windows 時間同步

讓系統時間更準確 引用 http ruanqizhen.spaces.live.com blog cns 5852d4f797c53fb6 1213.entry 使用ntp協議可以讓你的計算機自動與伺服器上的時間同步。從而保持最準確的時間。在 windows xp 2000 可下使用以下命令設定計算...

windows時間同步

檢視ntp伺服器時間 w32tm stripchart computer 10.36.20.18 檢查ntp和客戶端的時間差異 w32tm stripchart computer time.windows.com samples 5 取樣的次數 dataonly w32tm stripchart c...

Windows 設定時間同步

1 windows server 2008 r2 w32tm config manualpeerlist ntp.fudan.edu.cn,0x8 syncfromflags manual net stop w32time net start w32time w32tm resync 4條命令執行完...