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

PowerTip: Create a Sortable Date with PowerShell

$
0
0

Summary: Use Windows PowerShell to easily create a sortable date.

Hey, Scripting Guy! Question How can I use Windows PowerShell to create an ISO 8601 standard sortable date time-stamp for my logging solution?

Hey, Scripting Guy! Answer Use the Sortable Format Specifier in the ToString method from Get-Date:

PS C:\> (Get-Date).ToString("s")

2013-03-12T13:39:18 


Viewing all articles
Browse latest Browse all 3333

Trending Articles