Citrix StoreFront SDK PowerShell Modules

Get-STFWebReceiverDefaultSiteStyle

Gets the default colors and logos for the website

Syntax

Get-STFWebReceiverDefaultSiteStyle [-WebReceiverService] <WebReceiverService> [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Gets the default colors and logos for the website.

Parameters

Name Description Required? Pipeline Input Default Value
WebReceiverService WebReceiver service to get the default style for true true (ByValue)  

Input Type

Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService

Parameter WebReceiverService: A .NET class representing the configuration of a StoreFront Web Receiver service

Return Values

SiteStyle

The .NET Citrix.StoreFront.Model.ReceiverForWeb.SiteStyle reference type

Examples

EXAMPLE 1 Gets the default colors and logos

$webReceiver = Get-STFWebReceiverService
Get-STFWebReceiverDefaultSiteStyle -WebReceiverService $webReceiver
<!--NeedCopy-->

REMARKS

If you have multiple websites, when calling Get-STFWebReceiverService, specify the website’s virtual path. This gives the defaults. To see the actual values configured for the website, instead use Get-STFWebReceiverSiteStyle.

OUTPUT

HeaderLogoPath        : C:\inetpub\wwwroot\Citrix\StoreWeb\receiver\images\2x\CitrixReceiverLogo_Home@2x_3FEDFD700D66DF42.png
LogonLogoPath         : C:\inetpub\wwwroot\Citrix\StoreWeb\receiver\images\2x\CitrixStoreFront_auth@2x_1B99A8ADCDDFD9AB.png
HeaderBackgroundColor : #574f5b
HeaderForegroundColor : #fff
LinkColor             : #02a1c1
<!--NeedCopy-->
Get-STFWebReceiverDefaultSiteStyle