Get-AdfsWebTheme

Get-AdfsWebTheme

Gets web themes.

구문

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

자세한 설명

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.

매개 변수

-Name<String>

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

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

  • System.String

출력

출력 유형은 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[]>

예제

Example 1: Get all web themes

This command gets all the available web themes in AD FS(Active Directory Federation Services).

PS C:\> Get-AdfsWebTheme

Example 2: Get a named web theme

This command gets the theme named Theme01.

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

관련 항목

Export-AdfsWebTheme

New-AdfsWebTheme

Remove-AdfsWebTheme

Set-AdfsWebTheme