Set-RASSAMLIDP
Modifies a SAMLIDP.
Set-RASSAMLIDP [-Id] <uint> [-AllowUnencryptedAssertion <bool>] [-AttributeAD <string>] [-AttributeEnabled <bool>] [-AttributeSAML <string>] [-AttributeType {UserPrincipalName | ImmutableID | SID | sAMAccountName | Custom}] [-Description <string>] [-Enabled <bool>] [-Host <string>] [-IDPCertificate <string>] [-IDPEntityID <string>] [-LogonURL <string>] [-LogoutURL <string>] [-NewName <string>] [-ThemeId <uint>] [<CommonParameters>]
Set-RASSAMLIDP [-InputObject] <SAMLIDP> [-AllowUnencryptedAssertion <bool>] [-AttributeAD <string>] [-AttributeEnabled <bool>] [-AttributeSAML <string>] [-AttributeType {UserPrincipalName | ImmutableID | SID | sAMAccountName | Custom}] [-Description <string>] [-Enabled <bool>] [-Host <string>] [-IDPCertificate <string>] [-IDPEntityID <string>] [-LogonURL <string>] [-LogoutURL <string>] [-NewName <string>] [-ThemeId <uint>] [<CommonParameters>]
Set-RASSAMLIDP [-Name] <string> [[-SiteId] <uint>] [-AllowUnencryptedAssertion <bool>] [-AttributeAD <string>] [-AttributeEnabled <bool>] [-AttributeSAML <string>] [-AttributeType {UserPrincipalName | ImmutableID | SID | sAMAccountName | Custom}] [-Description <string>] [-Enabled <bool>] [-Host <string>] [-IDPCertificate <string>] [-IDPEntityID <string>] [-LogonURL <string>] [-LogoutURL <string>] [-NewName <string>] [-ThemeId <uint>] [<CommonParameters>]
Modifies properties of a SAMLIDP.
-Name <string> The name of the target SAMLIDP.
This must be the actual SAMLIDP name used in the RAS farm.
-SiteId <uint> Site ID in which to modify the specified SAMLIDP.
If the parameter is omitted, the site ID of the Licensing Server will be used.
-Id <uint> The ID of the SAMLIDP to modify. To obtain the ID, use the Get-SAMLIDP cmdlet.
-InputObject <SAMLIDP> The SAMLIDP to modify.
To obtain an object of type SAMLIDP representing a SAMLIDP, use the Get-SAMLIDP cmdlet.
-Enabled <bool> Enable or disable the specified SAMLIDP in a site.
-NewName <string> The new name of the target SAMLIDP.
-Description <string> A user-defined SAMLIDP description.
-ThemeId <uint> Specifies the SAMLIDP theme
-IDPEntityID <string> The IDP entity ID
-IDPCertificate <string> The IDP certificate
-LogonURL <string> The logon URL
-LogoutURL <string> The logout URL
-AllowUnencryptedAssertion <bool> Allow unencrypted assertion
-Host <string> Host name of gateway
This specified gateway will receive the calls for SP URLs.
-AttributeType <AttributeType> Specifies the attribute type
Possible values: UserPrincipalName, ImmutableID, SID, sAMAccountName, Custom
-AttributeEnabled <bool> Enable or disable an attribute of a specified SAMLIDP
-AttributeSAML <string> Specifies the SAMLIDP attribute.
-AttributeAD <string> Specifies the AD attribute.
<CommonParameters>
---------- EXAMPLE 1 ----------
Set-RASSAMLIDP "My SAMLIDP" -Enabled $False
Disables the SAMLIDP specified by name. ---------- EXAMPLE 2 ----------
Set-RASSAMLIDP -Id 10 -Enabled $False
Disables the SAMLIDP specified by ID. ---------- EXAMPLE 3 ----------
Set-RASSAMLIDP $SAMLIDP -Enabled $False
Disables the SAMLIDP specified by the $SAMLIDP variable (an object of type SAMLIDP).