Register-AdfsAuthenticationProvider

Register-AdfsAuthenticationProvider

Registers an external authentication provider in AD FS.

構文

Parameter Set: Default
Register-AdfsAuthenticationProvider -Name <String> -TypeName <String> [-ConfigurationFilePath <String> ] [ <CommonParameters>]

詳細説明

The Register-AdfsAuthenticationProvider cmdlet registers an external authentication provider as a provider in Active Directory フェデレーション サービス (AD FS). Use the Get-AdfsAuthenticationProvider cmdlet to get a list of registered authentication providers.

パラメーター

-ConfigurationFilePath<String>

Specifies the fully qualified file path of a file that contains authentication provider configuration data.

You can also upload the file to the Active Directory フェデレーション サービス (AD FS) configuration store and make it available to the authentication provider. Use this method if you want to provide additional information that pertains to a specific customer when you initialize the authentication provider. Any usage of this method is specific to the vendor that supplies the authentication provider.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

false

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

false

-Name<String>

Specifies the name of an authentication provider to register in AD FS.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

false

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

false

-TypeName<String>

Specifies the fully qualified type of the authentication provider assembly on the federation server.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

false

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

false

<CommonParameters>

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

入力

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

出力

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

  • System.Object

Example 1: Register an authentication provider

The first command creates a variable named $TypeName that contains the configuration data for an external provider.

The second command registers the authentication provider by using the data stored in the $TypeName variable.

PS C:\> $TypeName = "ExternalAuthMethod.ExternalAuthProvider, ExternalAuthProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=365143bb27e7ac8b, processorArchitecture=MSIL"
PS C:\> Register-AdfsAuthenticationProvider -TypeName $TypeName -Name "MyExternalAuthProvider" -ConfigurationFilePath ".\configdata.txt"

関連トピック

Get-AdfsAuthenticationProvider

Unregister-AdfsAuthenticationProvider