🖥️ Batch (CMD)

Get Time Zone Settings Report (Batch)

Uses wmic to list Time Zone Settings (Win32_TimeZone) straight from the command line.

By WindowsScripting.com · 302 B
GetTimeZoneReport.bat
@echo off
:: ============================================================
:: GetTimeZoneReport.bat
::
:: Reports Time Zone Settings via WMI (Win32_TimeZone).
:: ============================================================

wmic path Win32_TimeZone get Description,Bias,StandardName /format:table

pause