RosettaCodeData/Task/Date-format/PowerShell/date-format.psh
2016-12-05 22:15:40 +01:00

5 lines
151 B
Text

"{0:yyyy-MM-dd}" -f (Get-Date)
"{0:dddd, MMMM d, yyyy}" -f (Get-Date)
# or
(Get-Date).ToString("yyyy-MM-dd")
(Get-Date).ToString("dddd, MMMM d, yyyy")