Purpose: List all available time zones and their corresponding Time Zone IDs and Names on a Windows computer
Run the following Get-TimeZone
command in a PowerShell window:
Get-TimeZone -ListAvailable
Sample Output:
Id : Pacific Standard Time DisplayName : (UTC-08:00) Pacific Time (US & Canada) StandardName : Pacific Standard Time DaylightName : Pacific Daylight Time BaseUtcOffset : -08:00:00 SupportsDaylightSavingTime : True
Notes:Get-TimeZone
: Returns a list of all available time zones and their corresponding Time Zone IDs (Id
) and Names (StandardName
).
References:
Get-TimeZone (Microsoft.PowerShell.Management) – PowerShell | Microsoft Docs
Related:
PowerShell: Get Current Computer Time Zone – CodeCentral.com
PowerShell: Set Computer Time Zone – CodeCentral.com