2016年7月18日 星期一

讓Windows 10 ~ 7變成NTP server

在搜尋程式中打regedit,開啟編輯器
使用RegEdit修改機器碼下列參數:

1. HKLM\SYSTEM\CurrentControlSet\services\W32Time\Parameters
參數 Type,類別 REG_SZ,資料 NTP

2. HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Config\AnnounceFlags
數值設成5

3. HKLM\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpServer
參數 Enable,類別 REG_DWORD,數值 1 (啟用NTPserver)


回到command line,cmd.exe中輸入:
1. 開機時自動啟動w32time程序
sc config w32time start= auto

2. 更新修改後的機器碼
w32tm /config /update

3. 檢查目前機器碼設定
w32tm /query /configuration


在工作管理員->服務->w32time 啟動

Ref: http://jamyy.us.to/blog/2015/10/7752.html

P.S.: Remember to turn off the firewall to let clients connecting to NTP server. (20190116 updated)