PowerShell Logo Small

Get-ADClaimType



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

SYNTAX


Get-ADClaimType [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Properties <String[]>] [-ResultPageSize <Int32>] [-ResultSetSize
<Int32>] [-Server <String>] -Filter <String> [<CommonParameters>]
Get-ADClaimType [-Identity] <ADClaimType> [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>]
[<CommonParameters>]
Get-ADClaimType [-AuthType <ADAuthType>] [-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/?LinkId=216348

REMARKS

<

Examples


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

C:\PS>Get-ADClaimType -Filter *



Description

-----------

Retrieves a list of all claim types.




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

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



Description

-----------

Get all the claim types that are sourced from the attribute 'title'.




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

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



Description

-----------

Get the claim type with display name 'Employee Type'.




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

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



Description

-----------

Get all properties of the claim type with display name 'Employee Type'.