Get-AdfsWebTheme

Get-AdfsWebTheme

Gets web themes.

Sintaxis

Parameter Set: Default
Get-AdfsWebTheme [-Name <String> ] [ <CommonParameters>]

Descripción detallada

The Get-AdfsWebTheme cmdlet gets AdfsWebTheme objects. Specify a web theme by name. If you do not specify a name, the cmdlet gets all the AdfsWebTheme objects.

Parámetros

-Name<String>

Specifies a name. The cmdlet gets the web theme that has the name that you specify.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • System.String

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • Microsoft.IdentityServer.Management.Resources.AdfsWebTheme;Microsoft.IdentityServer.Management.Resources.AdfsWebTheme[]

    This cmdlet generates a web customization object, System.IdentityServer.Management.Resources.AdfsWebTheme, or an array of these objects. This object includes the following properties:

    Name: System.String
    IsBuiltinTheme: System.Boolean
    StyleSheet: IDictionary<CultureInfo, byte[]>
    RTLStyleSheet: byte[]
    Logo: IDictionary<CultureInfo, byte[]>
    Illustration: IDictionary<CultureInfo, byte[]>
    AdditionalFileResources: IDictionary<string, byte[]>

Ejemplos

Example 1: Get all web themes

This command gets all the available web themes in Servicios de federación de Active Directory (AD FS).

PS C:\> Get-AdfsWebTheme

Example 2: Get a named web theme

This command gets the theme named Theme01.

PS C:\> Get-AdfsWebTheme -Name "Theme01"

Temas relacionados

Export-AdfsWebTheme

New-AdfsWebTheme

Remove-AdfsWebTheme

Set-AdfsWebTheme