Set-RASSAMLIDP.md
NAME
Set-RASSAMLIDP
SYNOPSIS
Modifies a SAMLIDP.
SYNTAX
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)]
DESCRIPTION
Modifies properties of a SAMLIDP.
PARAMETERS
Name (string)
The name of the target SAMLIDP.
This must be the actual SAMLIDP name used in the RAS farm.
Required? true
Position? 0
Default value
Accept pipeline input? false
Accept wildcard characters? falseSiteId (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.
Required? false
Position? 1
Default value 0
Accept pipeline input? false
Accept wildcard characters? falseId (uint)
The ID of the SAMLIDP to modify. To obtain the ID, use the Get-SAMLIDP cmdlet.
Required? true
Position? 0
Default value 0
Accept pipeline input? false
Accept wildcard characters? falseInputObject (SAMLIDP)
The SAMLIDP to modify.
To obtain an object of type SAMLIDP representing a SAMLIDP, use the Get-SAMLIDP cmdlet.
Required? true
Position? 0
Default value
Accept pipeline input? true (ByValue)
Accept wildcard characters? falseEnabled (bool)
Enable or disable the specified SAMLIDP in a site.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseNewName (string)
The new name of the target SAMLIDP.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseDescription (string)
A user-defined SAMLIDP description.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseThemeId (uint)
Specifies the SAMLIDP theme
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseIDPEntityID (string)
The IDP entity ID
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseIDPCertificate (string)
The IDP certificate
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseLogonURL (string)
The logon URL
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseLogoutURL (string)
The logout URL
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseAllowUnencryptedAssertion (bool)
Allow unencrypted assertion
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseHost (string)
Host name of gateway
This specified gateway will receive the calls for SP URLs.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseAttributeType (AttributeType)
Specifies the attribute type
Possible values: UserPrincipalName, ImmutableID, SID, sAMAccountName, Custom
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseAttributeEnabled (bool)
Enable or disable an attribute of a specified SAMLIDP
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseAttributeSAML (string)
Specifies the SAMLIDP attribute.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? falseAttributeAD (string)
Specifies the AD attribute.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false(CommonParameters)
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters documentation. INPUTS
OUTPUTS
EXAMPLES
**---------- 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).
RELATED LINKS
Last updated