如何使用 Powershell 设置时区
如何在 Windows Server 2008 R2 目标计算机上使用 Powershell 设置时区?
How can I set TimeZone using Powershell, on a Windows Server 2008 R2 target machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是我在设置脚本中执行此操作的方式...尽管我们的 AD 基础设施会在计算机加入域时设置此设置...我喜欢彻底编写脚本:)
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 :)
至少在较新版本的 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.
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!!