PowerShell Logo Small

Get-ADClaimTransformPolicy



This is the built-in help made by Microsoft for the command 'Get-ADClaimTransformPolicy', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 <ADAuthType>] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>] -Filter <String>
[<CommonParameters>]
Get-ADClaimTransformPolicy [[-Identity] <ADClaimTransformPolicy>] [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Properties
<String[]>] [-Server <String>] [<CommonParameters>]
Get-ADClaimTransformPolicy [-AuthType <ADAuthType>] [-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/?LinkId=216347

REMARKS

<

Examples


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

C:\PS>Get-ADClaimTransformPolicy -Filter *



Description

-----------

Retrieves a list of all claims transformation policies.




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

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



Description

-----------

Gets all the claims transformation policies that are applied to trusts made with 'corp.contoso.com'.




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

C:\PS>Get-ADClaimTransformPolicy DenyAllPolicy



Description

-----------

Get the claims transformation policy with the name 'DenyAllPolicy'




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

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



Description

-----------

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".