環境:
AD: Server 2019 (Infrastructure,RID,PDC,Schema,Domain naming)
DHCP: Server 2008R2
Client: Windows 10
問題:
目前是未使用 NTP 的情況,下了 w32tm /query /source 指令,
看到的是 Free-running System Clock
要把對時指到 Server 2019 ,所以下了如下指令
w32tm /config /update /manualpeerlist:"2019srv.contoso.com,0x1" /syncfromflags:manual /reliable:yes
net stop w32time && net start w32time
完成上述指令後,此時再下 w32tm /query /source
看到的仍是 Free-running System Clock
請問有高手知道是什麼問題嗎?
可能是因為你沒有在系統上啟用 NTP 服務。
請先在系統上啟用 NTP 服務,然後使用以下指令配置 Windows 時間服務器:
w32tm /config /manualpeerlist:"pool.ntp.org" /syncfromflags:manual /reliable:yes /update
net stop w32time && net start w32time