Forum Discussion
Martinlangof640
Jul 31, 2019Copper Contributor
Virtual Desktop in Azure change TimeZone (+UTC 01:00)
Hello all, I had set up Windows Virtual Desktop in Azure vor the Company everthing worked fine after a while and ist really a coo,l Thing!! But! One Thing i cant find for days.. where i ca...
- Jul 31, 2019
Martinlangof640 This powershell seemed to work for me!
$tz = Get-TimeZone -ListAvailable |Out-Gridview -Outputmode Single
Set-TimeZone -ID $tz.Id
corner255
Aug 01, 2019Copper Contributor
Does this mean that you want to match the time zone between the VM and the operation source client?
In my case, I created a group policy according to this link.
Martinlangof640
Aug 01, 2019Copper Contributor
Hey thanks for the respond in my case this simle Code worked fine :
to Keep it persist
$tz = Get-TimeZone -ListAvailable |Out-Gridview -Outputmode Single
Set-TimeZone -ID $tz.Id
but your link is a great Projekt for me in the Future thanks!!