With PowerShell, it's easy to calculate the difference between dates:
$StartDate = Get-Date
$EndDate = [datetime]"10/31/2018"
New-TimeSpan -Start $StartDate -End $EndDate
Thus, we can see that it's over 192 days until the next Halloween.
No comments:
Post a Comment