Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Summary : Use Windows PowerShell to display date, time, and hour in 24-hour format.
How can I use Windows PowerShell to get the hour of the day in 24-hour format?
Use the Get-Date cmdlet and specify the “%H” pattern to the UFormat parameter ( H is case sensitive):
get-date -UFormat "%H"...(read more)