Forum Discussion
Spring Update 2020 is in Public Preview!
Hi Cookiekaikai!
thanks for coming back to me.
The only reliable way I experienced is to configure the audio capturing and camera redirect via PowerShell even in the new Spring Release.
This is how you can achieve best results:
1. Connect to your Azure Account with Admin rights:
Connect-AzAccount
2. Afterwards check your current RDPProperties of your HostPool. e.g.
Get-AzWvdHostPool -ResourceGroupName %YourRG% -Name %YourHostPool% | fl Name,CustomRDPProperty
3. Now define your RDP Properties into a variable, check the settings that are validated by me:
$rdpproperties = "audiocapturemode:i:1;capture:i:1;audiomode:i:0;camerastoredirect:s:*;redirectclipboard:i:1"
For more RDP settings check out the Microsoft Doc here: https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/clients/rdp-files?context=/azure/virtual-desktop/context/context
4. Apply the settings to your HostPool
Update-AzWvdHostPool -ResourceGroupName %YourRG% -Name %YourHostPool% -CustomRDPProperty $rdpproperties
5. In your Remote Desktop app, click on the three points beside your HostPool and check for update.
6. Connect to your Desktop and see it works!
If I can help you furthermore, please come back to me!
Cheers,
Patrick
patrickkoehler I appreciate the response Patrick! I was able to get the mic to work by enabling audio redirection on the host using gpedit. I never had to do this before so it was strange.