Created
September 16, 2025 14:27
-
-
Save tjmoore/85e45147108a5f4928cb64025aa561e1 to your computer and use it in GitHub Desktop.
Setting time zone on Windows Server Azure VMs
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
| # In Azure Windows Server VMs you can't change time zone via system Date and Time | |
| # Alternative solution using admin powershell... | |
| # Get available time zones by name | |
| Get-TimeZone -ListAvailable | |
| # Filter on ID | |
| Get-TimeZone -ListAvailable | Where-Object ({$_.ID -like "*Europe*"}) | |
| # Set the timezone from an ID | |
| Set-TimeZone -Id "W. Europe Standard Time" | |
| # Also check region settings, language etc. These are editable via system Time & Language. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment