Calculate Time Difference between Dates in PowerShell
PowerShell provides a number of cmdlets to retrieve current date time and to create time span object.
Calculate time difference - CmdLets
$current = Get-Date
$end= Get-Date
$diff= New-TimeSpan -Start $current -End $end
Write-Output "Time difference is: $diff"
Output
The C# way
$current = [System.DateTime]::Now
$end= [System.DateTime]::Now
$diff= $end.Subtract($end)
Write-Output "Time difference is: $diff"
Output
info Last modified by Raymond 7 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.