Partager via


Personnalisation du nom complet et de la description des méthodes d’authentification

Pour personnaliser le nom complet et la description des méthodes d’authentification, utilisez l’applet de commande PowerShell Set-AdfsAuthenticationProviderWebContent. Pour utiliser cette applet de commande, vous devez d’abord obtenir le nom de la méthode d’authentification que vous voulez personnaliser. Cette opération s’effectue avec Get-AdfsGlobalAuthenticationPolicy. Dans l’exemple ci-dessous, notre page de connexion affiche : « Connexion à l’aide d’un certificat X.509 ». Nous allons simplifier cet affichage pour nos utilisateurs.

customize displayname

Tout d'abord, nous obtenons le nom de la méthode d'authentification, puis nous modifions le texte affiché.

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.

Maintenant, c’est le nouveau message qui s’affiche.

Screenshot that shows that the display message has changed.

Références supplémentaires

Personnalisation de la connexion utilisateur AD FS