PowerShell: Get Current Computer Time Zone

PowerShell

Purpose: List current Windows computer time zone

Run the following Get-TimeZone command in a PowerShell window:

Get-TimeZone

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

References:
Get-TimeZone (Microsoft.PowerShell.Management) – PowerShell | Microsoft Docs

Related:
PowerShell: Get List Of Available Time Zones – CodeCentral.com
PowerShell: Set Computer Time Zone – CodeCentral.com

Leave a comment