次の方法で共有


認証方法の表示名と説明のカスタマイズ

署名メソッドの認証方法の表示名と説明をカスタマイズするには、 Set-AdfsAuthenticationProviderWebContent PowerShell コマンドレットを使用します。 このコマンドレットを使用するには、まず、カスタマイズする署名メソッドの認証方法の名前を取得する必要があります。 これは、 Get-AdfsGlobalAuthenticationPolicyを使って実行できます。 以下の例では、サインイン ページに次のように表示されています。"X.509 証明書を使ってサインインしてください。" これをユーザー向けに簡素化します。

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 のユーザー サインインのカスタマイズ