StoreFront 1912 LTSR reached end-of-life on 18-Dec-2024. It is recommended that you upgrade to a newer version of StoreFront.

X

Citrix StoreFront SDK PowerShell Modules

Get-STFWebReceiverFeaturedAppGroup

Gets the Featured App groups definitions configured within the Receiver for Web

Syntax

Get-STFWebReceiverFeaturedAppGroup [-WebReceiverService] <WebReceiverService> [<CommonParameters>]

Detailed Description

The cmdlet gets the Featured App groups definitions as configured within the Receiver for Web

Parameters

Name Description Required? Pipeline Input Default Value
WebReceiverService WebReceiver to get the FeaturedAppGroups from true true (ByValue)  

Input Type

Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService

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

Return Values

FeaturedAppGroups

The .NET Citrix.StoreFront.Model.ReceiverForWeb.FeaturedAppGroups reference type

Examples

EXAMPLE 1 Get the FeaturedAppGroups

$webReceiver = Get-STFWebReceiverService $group = New-STFWebReceiverFeaturedAppGroup -Title "Worx Suite" ` -Description "Improve productivity with a suite of secure mobile apps made for business." ` -TileId appBundle1 ` -ContentType Keyword ` -Contents Worx Add - STFWebReceiverFeaturedAppGroup - WebReceiverService $webReceiver - FeaturedAppGroup $group Get-STFWebReceiverFeaturedAppGroup -WebReceiverService $webReceiver

REMARKS

Get the featured application groups

OUTPUT

Title : Worx Suite Description : Improve productivity with a suite of secure mobile apps made for business. TileId : appBundle1 ContentType : Keyword Contents : {Worx}
Get-STFWebReceiverFeaturedAppGroup