Forum Discussion
Suleyman Ali
Apr 26, 2019Iron Contributor
azure windows virtual desktop: there are currently no resources available to connect to
There is a nice step-by-step guide in regards to setting up a azure virtual desktop http://www.rebeladmin.com/2019/04/step-step-guide-azure-windows-virtual-desktop-preview/ After a few trial an...
- Apr 26, 2019
BSuleyman Ali Below are the commands I used to clean up a host pool. You may need to remove user assignments before the resource can be removed.
Get-RdsAppGroup -TenantName $tenant -HostPoolName $hostPoolNameGet-RdsAppGroupUser -TenantName $tenant -HostPoolName $hostPoolName -AppGroupName "Remote App Group"Get-RdsAppGroup -TenantName $tenant -HostPoolName $hostPoolName | Remove-RdsAppGroupGet-RdsHostPool -TenantName $tenantGet-RdsSessionHost -TenantName $tenant -HostPoolName $hostPoolNameGet-RdsSessionHost -TenantName $tenant -HostPoolName $hostPoolName | Remove-RdsSessionHostGet-RdsHostPool -TenantName $tenant | Remove-RdsHostPool
Suleyman Ali
Apr 26, 2019Iron Contributor
TravisRobertsyeah, the network already exists and connects to azure AD DS (if you don't have on-premise/hybrid/ cloud DS then it will fail at the join part).
right... I think we will need to delete all resources and try again. we did not remove the host pool from WVD and this is probably the reason as its trying to connect to the host pool. do you have instructions in regards to removing the host pool via PS.
Apr 26, 2019
BSuleyman Ali Below are the commands I used to clean up a host pool. You may need to remove user assignments before the resource can be removed.
Get-RdsAppGroup -TenantName $tenant -HostPoolName $hostPoolName
Get-RdsAppGroupUser -TenantName $tenant -HostPoolName $hostPoolName -AppGroupName "Remote App Group"
Get-RdsAppGroup -TenantName $tenant -HostPoolName $hostPoolName | Remove-RdsAppGroup
Get-RdsHostPool -TenantName $tenant
Get-RdsSessionHost -TenantName $tenant -HostPoolName $hostPoolName
Get-RdsSessionHost -TenantName $tenant -HostPoolName $hostPoolName | Remove-RdsSessionHost
Get-RdsHostPool -TenantName $tenant | Remove-RdsHostPool
- Suleyman AliApr 26, 2019Iron Contributor