Skip to content

Instantly share code, notes, and snippets.

@turboBasic
Last active November 6, 2017 10:49
Show Gist options
  • Save turboBasic/96a2457500b5e87b69a3e239ad6c89bc to your computer and use it in GitHub Desktop.
Save turboBasic/96a2457500b5e87b69a3e239ad6c89bc to your computer and use it in GitHub Desktop.
The list of .Net time zones with offset to UTC
# result: https://runkit.io/turbobasic/dotnettimezones/branches/master
[System.TimeZoneInfo]::GetSystemTimeZones() |
Select -property Id, @{ Name = 'BaseUtcOffsetHours'; Expression = {$_.BaseUtcOffset.TotalMinutes / 60} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment