there are no resources assigned to you contact your technical support for help

Copper Contributor

Deployed WVD with the available document in Microsoft website. all went fine but when i try to connect from the WVD client, i get the above error

 

clipboard_image_0.png

1 Reply

Hi @PavanKistampally ,

 

If you run the Get-RdsAppGroupUser cmdlet, do you see the user (which you are using to sign in) in the list?

 

List all users who have been assigned to an app group:

PS C:\> Get-RdsAppGroupUser -TenantName "contoso" -HostPoolName "contosoHostPool" -AppGroupName "Desktop Application Group"

 

Check if a specific user has been assigned to an app group:

PS C:\> Get-RdsAppGroupUser -TenantName "contoso" -HostPoolName "contosoHostPool" -AppGroupName "Desktop Application Group" -UserPrincipalName "user1@contoso.com"

 

Microsoft Docs - Get-RdsAppGroupUser