Use Get-RdsSessionHost to find the name of the old Session
Hosts.
Get-RdsSessionHost -TenantName "Windows Virtual Desktop Betts" -HostPoolName "host-pool1"
|
Use Remove-RdsSessionHost to delete the Session Hosts, this needs
done even if you have deleted the Host Pool from the Portal.
Remove-RdsSessionHost -TenantName "Windows Virtual Desktop Betts" -HostPoolName "host-pool1" -Name "hoa-wvd--0.domain.com" -Force
|
Use Remote-RdsHostPool to delete the Host Pool, again this
need done even if it’s been deleted from the Portal.
Remove-RdsHostPool -TenantName "Windows Virtual Desktop Betts" -Name "host-pool1"
|
Use Remove-RdsTenant to delete the old tenant so that it no
longer shows in the WVD management portal.
Remove-RdsTenant -Name "Windows
Virtual Desktop Betts”
|