Calculate Difference/Duration between Two Timestamps in PowerShell
This code snippet shows how to calculate time differences.
In PowerShell, you can use New-TimeSpan
cmdlets to calculate the time differences between two dates/timestamps.
Code snippet
$current = Get-Date $end= Get-Date $diff= New-TimeSpan -Start $current -End $end Write-Output "Time difference is: $diff"
info Last modified by Raymond 3 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.