PowerShell Logo Small

Get-ADClaimType



This is the built-in help made by Microsoft for the command 'Get-ADClaimType', 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 a claim type from Active Directory.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-ADClaimType cmdlet returns a claim type defined in Active Drectory.



<

RELATED LINKS


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

REMARKS

<

Examples


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

PS C:\>Get-ADClaimType -Filter *



This command retrieves a list of all claim types.




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

PS C:\>Get-ADClaimType -Filter {SourceAttribute -eq 'title'}



This command gets all the claim types that are sourced from the attribute title.




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

PS C:\>Get-ADClaimType -Identity "Employee Type"



This command gets the claim type with display name Employee Type.




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

PS C:\>Get-ADClaimType -Identity "Employee Type" -Properties *



This command gets all properties of the claim type with display name Employee Type.