1.时间相差秒数计算
$start = Get-Date
Get-HotFix
$end = Get-Date
Write-Host -ForegroundColor Red ('Total Runtime: ' + ($end - $start).TotalSeconds)//若开始时间保存为字符串$startTime = Get-Date -Format 'yyyyMMddTHH:mm:ss'
$startTime=[datetime]::ParseExact("$startTime","yyyyMMddTHH:mm:ss", $null)$EndTime = Get-Date -Format 'yyyyMMddTHH:mm:ss'
$EndTime=[datetime]::ParseExact("$EndTime","yyyyMMddTHH:mm:ss", $null)$apiTime=($EndTime - $startTime).TotalSeconds
2.获取文件时间
$(Get-Item abc.txt) 表示获取文件的句柄;
$(Get-Item abc.txt).creationtime 获取文件创建时间
$(Get-Item abc.txt).lastaccesstime 获取文件最后访问时间
$(Get-Item abc.txt).lastwritetime 获取文件修改时间