RosettaCodeData/Task/Date-format/PowerShell/date-format.psh
2023-07-01 13:44:08 -04: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")