Get-AdfsAuthenticationProvider
Get-AdfsAuthenticationProvider is accessible with the help of adfs module. To install adfs on your system please refer to this adfs.
Synopsis
Gets a list of all authentication providers in AD FS.
Description
The Get-AdfsAuthenticationProvider cmdlet gets a list of all authentication providers currently registered in Active Directory Federation Services (AD FS). The read-only list includes built-in and external authentication providers and associated properties.
Parameters
-Name
Specifies the name of an authentication provider to retrieve from AD FS.
Required? false
Position? 1
Default value none
Accept pipeline input? false
Accept wildcard characters? false
Syntax
Get-AdfsAuthenticationProvider [[-Name] <String>] [<CommonParameters>]
——————–Example 1——————–
Get all registered authentication providers
PS C:> Get-AdfsAuthenticationProvider
AdminName : Forms Authentication
AllowedForPrimaryExtranet : True
AllowedForPrimaryIntranet : True
AllowedForAdditionalAuthentication : False
AuthenticationMethods : {urn:oasis:names:tc:SAML:1.0:am:password, urn:oasis:names:tc:SAML:2.0:ac:classes:Password, urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport, http://schemas.microsoft.com/ws/2008/06/identity/authenticationmethod/password}
Descriptions : {}
DisplayNames : {}
Name : FormsAuthentication
IdentityClaims : {}
IsCustom : False
RequiresIdentity : False
AdminName : Windows Authentication
AllowedForPrimaryExtranet : False
AllowedForPrimaryIntranet : True
AllowedForAdditionalAuthentication : False
AuthenticationMethods : {urn:ietf:rfc:1510, urn:federation:authentication:windows, urn:oasis:names:tc:SAML:2.0:ac:classes:Kerberos, http://schemas.microsoft.com/ws/2008/06/identity/authenticationmethod/kerberos…} Descriptions : {}
DisplayNames : {}
Name : WindowsAuthentication
IdentityClaims : {}
IsCustom : False
RequiresIdentity : False
AdminName : Certificate Authentication
AllowedForPrimaryExtranet : True
AllowedForPrimaryIntranet : True
AllowedForAdditionalAuthentication : True
AuthenticationMethods : {urn:ietf:rfc:2246, urn:oasis:names:tc:SAML:1.0:am:X509-PKI, urn:oasis:names:tc:SAML:2.0:ac:classes:TLSClient, urn:oasis:names:tc:SAML:2.0:ac:classes:X509…} Descriptions : {}
DisplayNames : {}
Name : CertificateAuthentication
IdentityClaims : {}
IsCustom : False
RequiresIdentity : False
This command gets all authentication providers currently registered in AD FS.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Get-AdfsAuthenticationProvider
You can also read about
- Register-AdfsAuthenticationProvider
- Unregister-AdfsAuthenticationProvider