PowerShell教程 - 日期时间管理(Date & Time Management)
作者:互联网
更新记录
转载请注明出处。
2022年8月25日 发布。
2022年8月18日 从笔记迁移到博客。
日期时间管理(Date & Time Management)
设置日期
set-Date
实例:
把系统的时间设置为指定的日期
set-Date -Date '2020-7-18'
设置将当前的日期添加一天
set-date -Date (Get-Date).AddDays(1)
获得日期时间
Get-Date
实例:
获得系统当前的日期
Get-Date -DisplayHint Date
获得系统当前的时间
Get-Date -DisplayHint Time
获得年份
(Get-Date).Year
获得日期对象后,将日期减少1天
(Get-Date).Date.AddDays(-1).ToString('u')
以GUI方式设置日期时间
注意:只有在有GUI的计算机才可以使用
timedate.cpl
获得时区
Get-Timezone
修改时区
Set-TimeZone
标签:Management,Get,获得,日期,set,Time,Date 来源: https://www.cnblogs.com/cqpanda/p/16589991.html