Set-AdfsAuthenticationProviderWebContent
Set-AdfsAuthenticationProviderWebContent is accessible with the help of adfs module. To install adfs on your system please refer to this adfs.
Synopsis
Modifies a display name and description.
Description
The Set-AdfsAuthenticationProviderWebContent cmdlet modifies a display name and description. Use this cmdlet to customize the name of the authentication provider to a user friendly and intuitive name. You can choose to specify a locale, or use an empty string for the Locale parameter to specify an invariant locale.
Parameters
-Description
Specifies a description. The cmdlet modifies the provider web content with the description that you specify.
Required? false
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-DisplayName <String>
Specifies a display name. The cmdlet modifies the provider web content with the display name that you specify.
Required? false
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-Locale <CultureInfo>
Specifies a locale. The cmdlet modifies the provider web content associated with the locale that you specify.
Required? false
Position? 1
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-Name <String>
Specifies the name of the authentication provider whose web content is being modified. To find a list of available authentication providers, run the command Get-AdfsAuthenticationProvider. Each returned provider has a Name property, and that value can be used with this parameter.
Required? true
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-PassThru <SwitchParameter>
Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.
Required? false
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-TargetWebContent <AdfsAuthProviderWebContent>
Specifies an AdfsAuthenticationProviderWebContent object that is used by the pipeline.
Required? true
Position? 1
Default value none
Accept pipeline input? True (ByValue)
Accept wildcard characters? false
-UserNotProvisionedErrorMessage <String>
Specifies an error message for a user not provisioned result.
Required? false
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-Confirm <SwitchParameter>
Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet.
Required? false
Position? named
Default value false
Accept pipeline input? false
Accept wildcard characters? false
-WhatIf <SwitchParameter>
Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run.
Required? false
Position? named
Default value false
Accept pipeline input? false
Accept wildcard characters? false
Syntax
Set-AdfsAuthenticationProviderWebContent [-DisplayName <String>] [-Description <String>] [-PassThru] [[-Locale] <CultureInfo>] -Name <String> [-WhatIf] [-Confirm] [<CommonParameters>]
Set-AdfsAuthenticationProviderWebContent [-DisplayName <String>] [-Description <String>] [-PassThru] [-TargetWebContent] <AdfsAuthProviderWebContent> [-WhatIf] [-Confirm] [<CommonParameters>]
——————Example 1——————
Modify the authentication provider web content
PS C:> Set-AdfsAuthenticationProviderWebContent -Name MultiFactorAuthentication -DisplayName “User Friendly Name for Multifactor Authentication” -Description “Description of your choice”
This command modifies the display name and description for the authentication provider that the user sees in the Active Directory Federation Services (AD FS) logon pages.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Set-AdfsAuthenticationProviderWebContent
You can also read about
- Get-AdfsAuthenticationProviderWebContent
- Remove-AdfsAuthenticationProviderWebContent