Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Display Current Time with PowerShell

$
0
0

Summary: Learn how to display the current time by using Windows PowerShell.

Hey, Scripting Guy! Question How can I  use Windows PowerShell to display the time with the hour, minute, and seconds?

Hey, Scripting Guy! Answer Use the ToString method from the Get-Date cmdlet, and use the long time pattern format
           string (see Standard Date and Time Format Strings) to overload the method, for example:

(get-date).ToString('T')


Viewing all articles
Browse latest Browse all 3333

Trending Articles