Citrix StoreFront SDK PowerShell Modules

Clear-STFWebReceiverAdminNotification

Clear the WebReceiver Admin Notification

Syntax

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

Detailed Description

Clear the WebReceiver Admin Notification.

Parameters

Name Description Required? Pipeline Input Default Value
WebReceiverService The WebReceiver service. true true (ByValue)  
Enabled Bool value to enable or disable admin notifications false 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

EXAMPLE 1 Clear WebReceiver Admin Notification

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

REMARKS

Clears the admin notification from the WebReceiver and disables displaying pinned links in the Web UI

Clear-STFWebReceiverAdminNotification