Created
December 17, 2025 13:05
-
-
Save tnhung2011/fdd90c5b81ea219159a4d5b1d73c8eee to your computer and use it in GitHub Desktop.
Get your current timezone. More useful output than "tzutil /g".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal enableextensions enabledelayedexpansion | |
| for /f "delims=" %%i in ('tzutil /g') do ( | |
| for /f "delims=:" %%j in ('tzutil /l ^| findstr /N /C:"%%i"') do ( | |
| set /a "toSkip=%%j-1" | |
| goto print | |
| ) | |
| ) | |
| for /f "delims=() tokens=2" %%i in ('^(tzutil /l ^| findstr /N $^) ^| findstr /R /C:"^%toSkip%"') do echo %%i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment