Powershell计算时间间隔(New-TimeSpan)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell计算时间间隔(New-TimeSpan)相关的知识,希望对你有一定的参考价值。
在Windows PowerShell里New-TimeSpan cmdlet提供了一种方法做日期算法。
- 计算时间间隔:
这个命令告诉你今天的日期与2006年除夕之间的天数:
New-TimeSpan $(Get-Date) $(Get-Date –month 12 -day 31 -year 2006)
New-TimeSpan $(Get-Date) $(Get-Date –month 12 -day 31 -year 2006 -hour 23 -minute 30)
计算从2013/11/11后的520天是那一天?
(get-date 2013/11/11) + (New-TimeSpan -day 520)
2015年4月15日 0:00:00
(get-date) - (New-TimeSpan -day 448)
2013年11月11日 14:51:10
以上是关于Powershell计算时间间隔(New-TimeSpan)的主要内容,如果未能解决你的问题,请参考以下文章