Remove-RASSAMLIDP
Last updated
Last updated
Remove-RASSAMLIDP
Removes the SAMLIDP specified by name from the Licensing Server site (default).
Remove-RASSAMLIDP [] (uint)** [()]
Remove-RASSAMLIDP [-] () [()]
Remove-RASSAMLIDP []** (string) [[-] (uint)] [()]
To remove a SAMLIDP from a specific site, specify the -SiteId parameter.
The name of the SAMLIDP to remove from a site.
Site ID from which to remove the SAMLIDP.
The ID of the SAMLIDP to remove from the site.
To obtain the ID, use the Get-SAMLIDP cmdlet.
The SAMLIDP to remove from a site.
To obtain a SAMLIDP object representing a SAMLIDP, use the Get-SAMLIDP command.
(CommonParameters)
**---------- EXAMPLE 1 ----------
Remove-RASSAMLIDP "My SAMLIDP"
Removes the SAMLIDP specified by name from the Licensing Server site (default).
To remove a SAMLIDP from a specific site, specify the -SiteId parameter. **---------- EXAMPLE 2 ----------
Remove-RASSAMLIDP -Id 10
Removes the SAMLIDP specified by ID. To obtain the group ID, use the Get-SAMLIDP cmdlet. **---------- EXAMPLE 3 ----------
Get-RASSAMLIDP -Id 10 | Remove-RASSAMLIDP
Removes a SAMLIDP, which is identified by an object obtained from the pipeline output.