Jul 31 2019 07:35 AM
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 can adjust the Timezone Permanet (as Admin)
If i Change the Time Zone to (UTC+01:00) after the next log in it switched Auto to (UTC)
and the Keyboardlayout also.
Greetings
Martin
Jul 31 2019 10:34 AM - edited Jul 31 2019 11:10 AM
Solution@Martinlangof640 This powershell seemed to work for me!
$tz = Get-TimeZone -ListAvailable |Out-Gridview -Outputmode Single
Set-TimeZone -ID $tz.Id
Jul 31 2019 06:31 PM - edited Jul 31 2019 06:36 PM
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.
Jul 31 2019 11:22 PM
It works!
Hey Eric thanks so much for your Reply , that easy Code saved my day it works and the timezone keeps now persist on the virtual desks
Jul 31 2019 11:50 PM
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!!
Sep 13 2022 06:47 PM
@Martinlangof640 Hi Guys!
Can you elaborate more on how this script works? I only see that opens a new dialog and that's it.
Did you set the new time and then run the script? What happened when the user logs the next day to a different AVD?
Oct 24 2022 07:14 AM
Jul 31 2019 10:34 AM - edited Jul 31 2019 11:10 AM
Solution@Martinlangof640 This powershell seemed to work for me!
$tz = Get-TimeZone -ListAvailable |Out-Gridview -Outputmode Single
Set-TimeZone -ID $tz.Id