我找到了这篇知识库文章:http : //support.microsoft.com/kb/816042
但它涉及一堆手动注册表黑客。我希望在某个地方的管理工具中找到一些可以让我做到这一点的东西。
我正在使用 Windows Server 2003。
Windows 2003 服务器是 dc 并具有 pdc 角色,默认情况下将设置为与 time.microsoft.com 同步时间。如果您希望使用不同的 sntp 时间服务器,您可以在命令提示符处发出此命令
net time /setsntp:FQDN
Run Code Online (Sandbox Code Playgroud)
其中 FQDN 由时间服务器名称替换。这可能需要几分钟才能生效。
这需要在具有 PDC 模拟器角色的 DC 上完成
在 PDC 模拟器上配置 Windows 时间服务
Type the following command to configure the PDC emulator and then press ENTER:
w32tm /config /manualpeerlist:peers /syncfromflags:manual /reliable:yes /update
where peers specifies the list of DNS names and/or IP addresses of the NTP time source that the PDC emulator synchronizes from. For example, you can specify time.windows.com. When specifying multiple peers, use a space as the delimiter and enclose them in quotation marks.
Run Code Online (Sandbox Code Playgroud)
http://technet.microsoft.com/en-us/library/cc786897.aspx