Get-Date Incorrectly formats MMM as "Sept" instead of "Sep"
See original GitHub issueSteps to reproduce
$> Get-Date -f MMM # "Sep" is correct
Sep
$>Get-Date -f "dd MMM" # "25 Sept." is incorrect
25 Sept.
Expected behavior
Get-Date -f "dd MMM" should produce 25 Sep not 25 Sept.
Environment data
Name Value
---- -----
PSVersion 7.0.3
PSEdition Core
GitCommitId 7.0.3
OS Microsoft Windows 10.0.18363
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
How do I stop "mmm" providing "Sept" instead of "Sep"?
There seems to be a new bug whereby "mmm" format returns either 'Sep' or 'Sept' so all of my formulae for each September...
Read more >September's short form "Sep" no longer parses in Java 17 ...
It seems to be that in the en_GB locale, the short form of September is now "Sept", not "Sep". All the other months...
Read more >Solved: Date format issue - Power Platform Community
The date shows as "20-Ma20-2020" instead of "20-May-2020". Changing the format to Text(DataCardValue1.selectedDate, "dd-mmmm-yyyy") does not work too.
Read more >Format month so September shows as Sep and not Sept
Format month so September shows as Sep and not Sept. I'm sure using MMM in the format date custom field used to give...
Read more >How to Format Dates in JavaScript with One Line of Code
const currentMonth = new Date(); const months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

It is better to ask in .Net Runtime repository.
This will be dependent on culture settings, which come from .NET.
If the culture you’re using defines the month name in this way, PowerShell has to respect it. If this is actually a bug, it needs to be filed in the dotnet/runtime repository.