Set-AdfsAuthenticationProviderWebContent

Set-AdfsAuthenticationProviderWebContent

Modifies a display name and description.

Syntax

Parameter Set: IdentifierName
Set-AdfsAuthenticationProviderWebContent [[-Locale] <CultureInfo> ] -Name <String> [-Description <String> ] [-DisplayName <String> ] [-PassThru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: IdentifierObject
Set-AdfsAuthenticationProviderWebContent [-TargetWebContent] <AdfsAuthProviderWebContent> [-Description <String> ] [-DisplayName <String> ] [-PassThru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed 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<String>

Specifies a description. The cmdlet modifies the provider web content with the description that you specify.

Aliases

none

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.

Aliases

none

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.

Aliases

none

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-AdfsGetAuthenticationProvider. Each returned provider has a Name property, and that value can be used with this parameter.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-PassThru

Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.

Aliases

none

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.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

True (ByValue)

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

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

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1: Modify the authentication provider web content

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.

PS C:\> Set-AdfsAuthenticationProviderWebContent -Name MultiFactorAuthentication -DisplayName "User Friendly Name for Multifactor Authentication" -Description "Description of your choice"

Get-AdfsAuthenticationProviderWebContent

Remove-AdfsAuthenticationProviderWebContent