PowerShell Logo Small

Get-ADClaimTransformPolicy



This is the built-in help made by Microsoft for the command 'Get-ADClaimTransformPolicy', 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

Returns one or more Active Directory claim transform objects based on a specified filter.

SYNTAX


Get-ADClaimTransformPolicy [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>] -Filter <String> [<CommonParameters>]
Get-ADClaimTransformPolicy [[-Identity] <ADClaimTransformPolicy>] [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>]
[<CommonParameters>]
Get-ADClaimTransformPolicy [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>] -LDAPFilter <String> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADClaimTransformPolicy cmdlet returns one or more Active Directory claim transform objects based on a specified filter.



<

RELATED LINKS


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

REMARKS

<

Examples


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

PS C:\>Get-ADClaimTransformPolicy -Filter *



This command retrieves a list of all claims transformation policies.




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

PS C:\>$contoso = Get-ADTrust -Identity "corp.contoso.com"
PS C:\> Get-ADClaimTransformPolicy -Filter {IncomingTrust -eq $contoso -or OutgoingTrust -eq $contoso}



This example gets all the claims transformation policies that are applied to trusts made with corp.contoso.com.




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

PS C:\>Get-ADClaimTransformPolicy -Identity DenyAllPolicy



This command gets the claims transformation policy with the name DenyAllPolicy.




-------------------------- EXAMPLE 4 --------------------------

PS C:\>Get-ADClaimTransformPolicy -LDAPFilter "(name=DenyAll*)"



This command gets information on any claims transformation policies using an LDAP-based query filter that looks for matches where policies have a name that starts with the
word DenyAll.