Closed jackdcasey closed 3 years ago
The Get-Date cmdlet has been updated with a new parameter, -FromUnixTime.
Get-Date
-FromUnixTime
Because of this, using -f is ambiguous. My proposal is to change instances of this to -format. This will ensure no ambiguity when used.
-f
-format
For example: { Get-Date -f "T" } becomes { Get-Date -format "T" }
{ Get-Date -f "T" }
{ Get-Date -format "T" }
Fix: #62
Thanks. Sorry I didn't see this until now.
The
Get-Date
cmdlet has been updated with a new parameter,-FromUnixTime
.Because of this, using
-f
is ambiguous. My proposal is to change instances of this to-format
. This will ensure no ambiguity when used.For example:
{ Get-Date -f "T" }
becomes{ Get-Date -format "T" }
Fix: #62