Set-STFWebReceiverService¶
Configure Receiver for Web
Syntax¶
Set-STFWebReceiverService [-WebReceiverService] <WebReceiverService> [[-ClassicReceiverExperience] <Boolean>] [[-SessionStateTimeout] <Int32>] [[-DefaultIISSite] <SwitchParameter>] [[-PassThru] <SwitchParameter>] [<CommonParameters>]
Detailed Description¶
Configure Receiver for Web service options.
Related Commands¶
Parameters¶
Name | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|
WebReceiverService | Receiver for Web service | true | true (ByValue) | |
ClassicReceiverExperience | Enable or disable the classic or unified Receiver experience. The classic experience is no longer supported. Defaulting to the unified experience to maintain compatibility with legacy scripting. | false | false | |
SessionStateTimeout | Set the session state timeout, in minutes. | false | false | |
DefaultIISSite | Set the Receiver for Web site as the default page in IIS | false | false | |
PassThru | Output the updated WebReceiver object | false | false |
Input Type¶
Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService¶
Parameter WebReceiverService: A .NET class representing the configuration of a StoreFront Web Receiver service
System.Boolean¶
Parameter ClassicReceiverExperience: The .NET System.Boolean
value type
System.Int32¶
Parameter SessionStateTimeout: The .NET System.Int32
value type
System.Management.Automation.SwitchParameter¶
Parameter DefaultIISSite: The .NET System.Management.Automation.SwitchParameter
value type
System.Management.Automation.SwitchParameter¶
Parameter PassThru: The .NET System.Management.Automation.SwitchParameter
value type
Return Values¶
None¶
Examples¶
EXAMPLE 1 Set Receiver for Web options¶
$rfw = Get-STFWebReceiverService Set-STFWebReceiverService $rfw -CommunicationAttempts 2 -ShowDesktopViewer $false
REMARKS
Configure the number of communication attempts to two and disable the desktop
viewer on the only configured Receiver for Web service.