> ## Content Index
> Fetch the complete content index at: https://www.filipkonopik.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# PowerShell: Get System Time Zone
- URL: https://www.filipkonopik.com/powershell-get-system-time-zone/
- Published: 2026-07-27T13:08:49.000Z
- Updated: 2026-08-06T05:48:45.000Z
- Author: Filip Konopík
- Tags: System Info

Need to check the configured time zone of a machine - for scheduling scripts correctly, troubleshooting timestamp discrepancies, or confirming a server's regional settings? This one-liner pulls it straight from the system.

Prerequisites:

- Privileges: None
- Module: Built-in, no import needed

Quick Command:

```powershell
Get-TimeZone
```

Example Output:

```powershell
Id                         : Central Europe Standard Time
DisplayName                : (UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague
StandardName               : Central Europe Standard Time
DaylightName                : Central Europe Daylight Time
BaseUtcOffset               : 01:00:00
SupportsDaylightSavingTime  : True
```

📦

****Want all of them at once?**  
Get every free one-liner from this blog in a single downloadable bundle organized by category, each with full comment-based help. No more copy-pasting one at a time.

[Get the Complete Bundle for $39](https://gum.co/u/oczvkqdc?ref=filipkonopik.com)

How It Works:

- Get-TimeZone is a dedicated, purpose-built cmdlet that reads the machine's currently configured time zone - no CIM/WMI namespace digging required for this one.
- Id and StandardName identify the time zone in Windows' internal naming scheme, while DisplayName gives a human-readable description including the UTC offset and representative cities.
- BaseUtcOffset shows the standard (non-daylight-saving) offset from UTC.
- SupportsDaylightSavingTime shows whether the zone observes daylight saving time changes at all.