Get-AdfsClient

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 フェデレーション サービス (AD FS).

パラメーター

-ClientId<String[]>

Specifies an array of client identifiers for the OAuth 2.0 client for which to retrieve registration information.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-InputObject<AdfsClient>

Specifies an object of type AdfsClient that represents an OAuth 2.0 client for which to retrieve registration information.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-Name<String[]>

Specifies the name of the OAuth 2.0 client for which to retrieve registration information.

エイリアス

なし

必須?

false

位置は?

1

既定値

なし

パイプライン入力を許可する

True (ByValue, ByPropertyName)

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • System.Object

Example 1: Retrieve registration information for all clients

This command retrieves registration information for all OAuth 2.0 clients currently registered withAD FS.

PS C:\> Get-AdfsClient

Example 2: Retrieve registration information by client name

This command retrieves registration information for the OAuth 2.0 client named Device Registration Client.

PS C:\> Get-AdfsClient -Name "Device Registration Client"

Example 3: Retrieve registration information by client ID

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"

関連トピック

Add-AdfsClient

Disable-AdfsClient

Enable-AdfsClient

Remove-AdfsClient

Set-AdfsClient