Remove-RASRDSHostPool
Removes an RD Session Host Pool from a site.
Remove-RASRDSHostPool [-Id] <uint> [<CommonParameters>] Remove-RASRDSHostPool [-InputObject] <RDSHostPool> [<CommonParameters>] Remove-RASRDSHostPool [-Name] <string> [[-SiteId] <uint>] [<CommonParameters>]
Removes an RD Session Host Pool from a site.
-Name <string> The name of a RD Session Host server host pool to remove from a site.
-SiteId <uint> Site ID from which to remove the specified host pool. If the parameter is omitted, the site ID of the Licensing Server will be used.
-Id <uint> RD Session Host Pool ID. To obtain the ID of a host pool, use the Get-RASRDSHostPool cmdlet.
-InputObject <RDSHostPool> A RD Session Host Pool object (an object of type RDSHostPool) to remove from a site. A RDSHostPool object representing a group is obtained using the Get-RASRDSHostPool cmdlet.
<CommonParameters>
-none-
---------- EXAMPLE 1 ---------- Remove-RASRDSHostPool "My RDS Host Pool" Removes the host pool specified by name from the Licensing Server site (default). To remove a host pool from a specific site, specify the -SiteId parameter. ---------- EXAMPLE 2 ---------- Remove-RASRDSHostPool -Id 10 Removes the host pool specified by ID from the Licensing Server site. To obtain the host pool ID, use the Get-RASRDSHostPool cmdlet. ---------- EXAMPLE 3 ---------- Get-RASRASRDSHostPool | Remove-RASRASRDSHostPool Removes an RD Session Host Pool, which is identified by an object obtained from the pipeline output.