Today I got a call from a customer that was playing around with OSD in System Center Configuration Manager and the Microsoft Deployment Toolkit (MDT). He wanted to know where he could find a list of all the Time Zones Names, so he could change the default “Pacific Standard Time” to something else. But where can you find a list of all the “TimeZoneName”?
Instead of using some old reference list on TechNet or MSDN, you can simply use the good old Time Zone Utility (Tzutil), that can be used to view and manage available time zones.
You can run Tzutil from a command prompt, to get a list of all the options:
The following example displays the current time zone.
tzutil /g
The following example lists all available time zones.
tzutil /l
Tzutil Command-Line Reference:
https://technet.microsoft.com/library/hh825053.aspx
That’s it… Enjoy!