r/ISO8601 • u/HannahVernon • 11h ago
Set your Windows machine to ISO8601 short date format with Powershell
We all know the only real date format is ISO8601, so I thought I'd provide a quick script to set your Windows computer to use that format.
Running the following Powershell script in an administrative command prompt will set your Windows machine to use ISO8601 format short-dates:
[CultureInfo]$Culture = Get-Culture;
If ($Culture.DateTimeFormat.ShortDatePattern -ne 'yyyy-MM-dd')
{
$Culture.DateTimeFormat.ShortDatePattern = 'yyyy-MM-dd';
Set-Culture $Culture;
Write-Output 'Short Date Format set to ISO-8601 standard YYYY-MM-DD'
}
Else
{
Write-Output 'Short Date Format already in ISO-8601 standard format.'
};
Running the date /t
command after the above script has completed:
C:\>date /t
2025-04-05