Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Easily check the time using PowerShell.
July 16, 2015
Q. How can I quickly check the time in a PowerShell window?
A. The easiest way is to run:
[datetime]::Now
Note you can also run the below to get the UTC time.
[datetime]::UtcNow
You May Also Like