Windows

為域中的所有 Windows 伺服器設置時區 (2008 R2)

  • August 18, 2010

有沒有辦法可以為我的域上的所有機器設置時區(也許使用組策略?)。所有的 Windows 機器都是 Server 2008 R2。

命令 tzutil.exe 在 Windows 7 / 2008 上可用

TZUTIL </? | /g | /s TimeZoneID[_dstoff] | /l>

Parameters:
   /? Displays usage information.

   /g Displays the current time zone ID.

   /s TimeZoneID[_dstoff]
      Sets the current time zone using the specified time zone ID.
      The _dstoff suffix disables Daylight Saving Time adjustments
      for the time zone (where applicable).

   /l Lists all valid time zone IDs and display names. The output will
      be:
          <display name>
          <time zone ID>

Examples:
   TZUTIL /g
   TZUTIL /s "Pacific Standard Time"
   TZUTIL /s "Pacific Standard Time_dstoff"

要設置為 UTC,請使用類似TZUTIL /s "UTC".

引用自:https://serverfault.com/questions/172070