Storefront Powershell SDK 2402

Set-STFWebReceiverAppProtection

Set the WebReceiver App Protection options

Syntax

Set-STFWebReceiverAppProtection [-WebReceiverService] <WebReceiverService> [-Enabled] <None | Off | On> [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Set the WebReceiver App Protection client options.

Parameters

Name Description Required? Pipeline Input Default Value
WebReceiverService The WebReceiver service. true true (ByValue)  
Enabled Whether App Protection should be On or Off. true false  

Input Type

Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService

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

Citrix.StoreFront.Model.ReceiverForWeb.AppProtectionMode

Parameter Enabled: The .NET Citrix.StoreFront.Model.ReceiverForWeb.AppProtectionMode value type

Return Values

None

Examples

EXAMPLE 1 Set WebReceiver App Protection options

$receiver = Get-STFWebReceiverService
			Set-STFWebReceiverAppProtection -WebReceiverService $receiver -Enabled On
<!--NeedCopy-->

REMARKS

Set the WebReceiver App Protection to be on.

Set-STFWebReceiverAppProtection