PowerShell Logo Small

Clear-ADClaimTransformLink



This is the built-in help made by Microsoft for the command 'Clear-ADClaimTransformLink', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Removes a claims transformation from being applied to one or more cross-forest trust relationships in Active Directory.

SYNTAX


Clear-ADClaimTransformLink [-Identity] <ADTrust> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-PassThru] [-Policy <ADClaimTransformPolicy>] [-Server
<String>] [-TrustRole {Trusted | Trusting}] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Clear-ADClaimTransformLink cmdlet removes a claims transformation from being applied to one or more cross-forest trust relationships in Active Directory.



<

RELATED LINKS


Online Version: http://go.microsoft.com/fwlink/p/?linkid=291010

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

PS C:\>Clear-ADClaimTransformLink -Identity "corp.contoso.com" -Policy DenyAllPolicy



This command removes the policy named DenyAllPolicy from the corp.contoso.com trust.




-------------------------- EXAMPLE 2 --------------------------

PS C:\>Clear-ADClaimTransformLink -Identity "corp.contoso.com" -TrustRole Trusted



This command removes any policies that are applied to where this forest acts as the trusted forest in the corp.contoso.com trust. Effectively, this cmdlet removes any
policies that are applied to claims flowing out of this forest towards it trust partner.




-------------------------- EXAMPLE 3 --------------------------

PS C:\>Clear-ADClaimTransformLink -Identity "corp.contoso.com" -Policy DenyAllPolicy -TrustRole Trusting



This command removes DenyAllPolicy that is applied to where this forest acts as the trusted domain in the corp.contoso.com trust. Effectively, this cmdlet removes
DenyAllPolicy from applying to claims coming into this from its trust partner.