如何使用 Powershell 设置时区

发布于 2024-10-03 04:46:10 字数 59 浏览 2 评论 0原文

如何在 Windows Server 2008 R2 目标计算机上使用 Powershell 设置时区?

How can I set TimeZone using Powershell, on a Windows Server 2008 R2 target machine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

埖埖迣鎅 2024-10-10 04:46:10

这就是我在设置脚本中执行此操作的方式...尽管我们的 AD 基础设施会在计算机加入域时设置此设置...我喜欢彻底编写脚本:)

%windir%\system32\tzutil /s "Eastern Standard Time"

This is how I do it in setup scripts...although our AD infrastructure would set this when the machine joins the domain anyway...I like to be thorough in my scripting :)

%windir%\system32\tzutil /s "Eastern Standard Time"
宛菡 2024-10-10 04:46:10

至少在较新版本的 Powershell(5.1 及更高版本)中,有一个 cmdlet。请参阅文档

Set-TimeZone "东部标准时间"

旧版本可以在此处。

At least in newer versions of Powershell (5.1 and later), there is a cmdlet. See the docs.

Set-TimeZone "Eastern Standard Time"

Older versions can find the script here.

世俗缘 2024-10-10 04:46:10

PowerShell命令
tzutil /g - 查看当前时区
tzutil /l - 时区列表
tzutil /s "example" 更改时区

还有其他命令可以更改时区,我已在 YouTube 视频中进行了解释 https ://youtu.be/JvLa5HjEjHM

希望这对您有帮助!

PowerShell command
tzutil /g - to see current time zone
tzutil /l - list of time zones
tzutil /s "example" to change time zone

There are other commands to change the time zone I have explained it in my YouTube video https://youtu.be/JvLa5HjEjHM

Hope this will help you!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文