Storefront Powershell SDK 2411

Clear-STFWebReceiverPinnedLinks

Clear the WebReceiver Pinned Links

Syntax

Clear-STFWebReceiverPinnedLinks [-WebReceiverService] <WebReceiverService> [-Enabled] <Boolean> [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Clear the WebReceiver Pinned Links.

Parameters

Name Description Required? Pipeline Input Default Value
WebReceiverService The WebReceiver service. true true (ByValue)  
Enabled Bool value to enable or disable pinned links true true (ByValue)  

Input Type

Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService

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

System.Boolean

Parameter Enabled: The .NET System.Boolean value type

Return Values

None

Examples

$receiver = Get-STFWebReceiverService
Clear-STFWebReceiverPinnedLinks -WebReceiverService $receiver -Enabled $false
<!--NeedCopy-->

REMARKS

Clears the pinned links to the WebReceiver and disables displaying pinned links in the Web UI

Clear-STFWebReceiverPinnedLinks