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 AD FS(Active Directory Federation Services). 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 AD FS(Active Directory Federation Services) 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>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • 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