Get-AdfsClient
Retrieves registration information for an OAuth 2.0 client.
Parameter Set: Name
Get-AdfsClient [[-Name] <String[]> ] [ <CommonParameters>]
Parameter Set: ClientId
Get-AdfsClient [-ClientId] <String[]> [ <CommonParameters>]
Parameter Set: InputObject
Get-AdfsClient [-InputObject] <AdfsClient> [ <CommonParameters>]
The Get-AdfsClient cmdlet retrieves registration information for an OAuth 2.0 client that was previously registered with Active Directory Federation Services (AD FS).
Specifies an array of client identifiers for the OAuth 2.0 client for which to retrieve registration information.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
Specifies an object of type AdfsClient that represents an OAuth 2.0 client for which to retrieve registration information.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByValue) |
Accept Wildcard Characters? |
false |
Specifies the name of the OAuth 2.0 client for which to retrieve registration information.
Aliases |
none |
Required? |
false |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByValue, ByPropertyName) |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
The input type is the type of the objects that you can pipe to the cmdlet.
The output type is the type of the objects that the cmdlet emits.
- System.Object
This command retrieves registration information for all OAuth 2.0 clients currently registered withAD FS.
PS C:\> Get-AdfsClient
This command retrieves registration information for the OAuth 2.0 client named Device Registration Client.
PS C:\> Get-AdfsClient -Name "Device Registration Client"
This command retrieves registration information for the OAuth 2.0 client specified by the client identifier dd762716-544d-4aeb-a526-687b73838a22.
PS C:\> Get-AdfsClient -ClientId "dd762716-544d-4aeb-a526-687b73838a22"