Set-ADClaimTransformLink
Synopsis
Description
Parameters
-AuthType
Specifies the authentication method to use. Possible values for this parameter include:
Required? false
Position? named
Default value Microsoft.ActiveDirectory.Management.AuthType.Negotiate
Accept pipeline input? false
Accept wildcard characters? false
-Credential <PSCredential>
Specifies the user account credentials to use to perform this task. The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated with the drive is the default.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Identity <ADTrust>
Specifies an Active Directory group object by providing one of the following values. The identifier in parentheses is the LDAP display name for the attribute.
Required? true
Position? 1
Default value
Accept pipeline input? True (ByValue)
Accept wildcard characters? false
-PassThru <SwitchParameter>
Returns the new or modified object. By default (i.e. if -PassThru is not specified), this cmdlet does not generate any output.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Policy <ADClaimTransformPolicy>
Specifies the claims transformation policy to apply to the cross-forest trust relationship. This parameter does not receive pipeline input.
Required? true
Position? 2
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Server <String>
Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory Snapshot instance.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-TrustRole <ADTrustRole>
An enumeration of the link types. Used to specify which links on the trust relationships should the claims transformation apply to. Allowable values are: Trusted and Trusting.
Required? true
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Confirm <SwitchParameter>
Prompts you for confirmation before running the cmdlet.
Required? false
Position? named
Default value false
Accept pipeline input? false
Accept wildcard characters? false
-WhatIf <SwitchParameter>
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Required? false
Position? named
Default value false
Accept pipeline input? false
Accept wildcard characters? false
Syntax
Set-ADClaimTransformLink [-WhatIf] [-Confirm] [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Identity] <ADTrust> [-PassThru] [-Policy] <ADClaimTransformPolicy> [-Server <String>] -TrustRole <ADTrustRole> [<CommonParameters>]
C:\PS>New-ADClaimTransformPolicy DenyAllPolicy -DenyAll;
Set-ADClaimTransformLink “delhi.TOSSolution.com” -Policy DenyAllPolicy -TrustRole Trusted
Set-ADClaimTransformLink “delhi.TOSSolution.com” -Policy DenyAllPolicy -TrustRole Trusting
Apply the claims transformation policy ‘DenyAllPolicy’ to the trust “delhi.TOSSolution.com”. The rule is applied to where this domain acts as both the trusted and trusting domain in the trust. Effectively, the rule is applied to both claims coming in to this domain from its trust partner, and claims flowing out of this domain towards its trust partner.
Since the specified transformation rule denies all claims to be sent or received, this domain will now deny all claims from being sent to or received from the other domain (the trust partner).
C:\PS>New-ADClaimTransformPolicy AllowAllExceptCompanyAndDepartmentPolicy -AllowAllExcept Company,Department;
Get-ADTrust “delhi.TOSSolution.com” | Set-ADClaimTransformLink -Policy AllowAllExceptCompanyAndDepartmentPolicy -TrustRole Trusted
Apply the claims transformation policy ‘AllowAllExceptCompanyAndDepartmentPolicy’ to the trust “delhi.TOSSolution.com”. The rule is applied to where this domain acts as the trusted domain in the trust. Effectively, the rule is applied to claims flowing out of this domain towards its trust partner.
Since the specified transformation rule allows all claims to be sent or received except ‘Company’ and ‘Department’, this domain will now allow all claims except the two from being sent to the other domain (the trust partner).
C:\PS>New-ADClaimTransformPolicy HRToHrPolicy -Rule ‘C1:[Type==”ad://ext/Department:45ui2j4cc00e9524″, Value==”Human Resources”, ValueType==”string”] => issue(Type=C1.Type, Value=”HR”, ValueType=C1.ValueType);’; Set-ADClaimTransformLink “delhi.TOSSolution.com” -Policy HumanResourcesToHrPolicy -TrustRole Trusting
Apply the claims transformation policy ‘ HRToHrPolicy’ to the trust “delhi.TOSSolution.com”. The rule is applied to where this domain acts as the trusting domain in the trust. Effectively, the rule is applied to claims coming in to this domain from its trust partner.
Since the specified transformation rule transforms the value ‘Human Resources’ into ‘HR’ in the claim ad://ext/Department:45ui2j4cc00e9524′, this domain will now transform the claim value received from the other domain (the trust partner) from ‘Human Resources’ to ‘HR’.
Get-Command Set-ADClaimTransformLink