为身份验证方法自定义显示名称和说明

若要为身份验证方法自定义显示名称和说明,可以使用 Set-AdfsAuthenticationProviderWebContent PowerShell cmdlt。 若要使用此 cmdlet,你必须首先获取要自定义的身份验证方法的名称。 这可以使用 Get-AdfsGlobalAuthenticationPolicy来进行。 在下面的示例中,我们看到登录页面上显示以下信息:“Sign in using an X.509 certificate”。 我们要为我们的用户简化此操作。

customize displayname

因此我们首先获取身份验证方法的名称,然后编辑显示的文本。

Get-AdfsGlobalAuthenticationPolicy

AdditionalAuthenticationProvider  : {}
DeviceAuthenticationEnabled   : False
PrimaryIntranetAuthenticationProvider : {FormsAuthentication, CertificateAuthentication}
PrimaryExtranetAuthenticationProvider : {FormsAuthentication, CertificateAuthentication}
WindowsIntegratedFallbackEnabled  : True

Set-AdfsAuthenticationProviderWebContent -Name CertificateAuthentication -DisplayName "Sign in with a certificate"

Screenshot that shows how to get the name of the authentication method and edit the displayed text.

现在我们可以看到显示消息已更改。

Screenshot that shows that the display message has changed.

其他参考

AD FS 用户登录自定义