Merge branch 'master' of git@gitssh.labsconnect.se:bobban/cheat-sheets.git

This commit is contained in:
Bobban
2022-11-09 20:50:39 +01:00
7 changed files with 21 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
Timezones on Virtual Machines in Azure can not be set in Settings or Control panel, it needs to be set by a powershell command.
List all available time zones
``` Powershell
Get-TimeZone -ListAvailable
```
List available time zones for a specific region
``` Powershell
Get-TimeZone -ListAvailable | where ({$_.Id -like "*Europe*"})
```
Set the time one on the server
``` Powershell
Set-TimeZone -Id "W. Europe Standard Time"
```
Restart the server
[Change Time Zone of Azure Virtual Machines | David Galiata - neoslash.net](https://www.neoslash.net/blog/Azure%20vm%20time%20zone)

View File

@@ -8,15 +8,6 @@ Manuelly register computer for Auto pilot
On the langueage slection screen, press Shift + F10 to open cmd On the langueage slection screen, press Shift + F10 to open cmd
``` cmd
Powershell
```
``` cmd ``` cmd

View File