Set-STFWebReceiverSiteStyle¶
Sets the Style info in the custom style sheet
Syntax¶
Set-STFWebReceiverSiteStyle [-WebReceiverService] <WebReceiverService> [[-HeaderLogoPath] <String>] [[-LogonLogoPath] <String>] [[-HeaderBackgroundColor] <String>] [[-HeaderForegroundColor] <String>] [[-LinkColor] <String>] [[-IgnoreNonExistentLogos] <Boolean>] [<CommonParameters>]
Detailed Description¶
Sets the Style info in the custom style sheet for the unified experience Receiver.
Related Commands¶
Parameters¶
Name | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|
WebReceiverService | The WebReceiver service to style | true | true (ByValue) | |
HeaderLogoPath | Header logo path | false | false | |
LogonLogoPath | Logon logo path | false | false | |
HeaderBackgroundColor | Background color of the Header | false | false | |
HeaderForegroundColor | Foreground color of the Header | false | false | |
LinkColor | Link color of the page | false | false | |
IgnoreNonExistentLogos | Whether to ignore non-existent logo files and continue to set colors | false | false |
Input Type¶
Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService¶
Parameter WebReceiverService: A .NET class representing the configuration of a StoreFront Web Receiver service
System.String¶
Parameter HeaderLogoPath: The .NET System.String
reference type
System.String¶
Parameter LogonLogoPath: The .NET System.String
reference type
System.String¶
Parameter HeaderBackgroundColor: The .NET System.String
reference type
System.String¶
Parameter HeaderForegroundColor: The .NET System.String
reference type
System.String¶
Parameter LinkColor: The .NET System.String
reference type
System.Boolean¶
Parameter IgnoreNonExistentLogos: The .NET System.Boolean
value type
Return Values¶
None¶
Notes¶
This cmdlet supports styling the following classes
-
Standard resolution icon path
-
High resolution icon path
-
Background color of the header
-
Foreground color of the header
-
Link color of the page
Examples¶
EXAMPLE 1 Configure Receiver images¶
$webReceiver = Get-STFWebReceiverService Set-STFWebReceiverSiteStyle -WebReceiverService $webReceiver -HeaderLogoPath "C:\images\header.jpg" -LogonLogoPath "C:\images\logon.jpg"
REMARKS
Configure the Receiver header and logon images.