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-STFWebReceiverFeature

Gets the web receiver features

Syntax

Get-STFWebReceiverFeature [[-Name] <String>] [-WebReceiverService] <WebReceiverService> [<CommonParameters>]

Detailed Description

Gets the feature instances that have been added to the specified WebReceiver service.

Parameters

Name Description Required? Pipeline Input Default Value
Name The name of the WebReceiver feature. false false  
WebReceiverService The WebReceiver service for which to list the added features. true true (ByValue)  

Input Type

System.String

Parameter Name: The .NET System.String reference type

Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService

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

Return Values

None

Examples

EXAMPLE 1 Get all WebReceiver feature instances.

$rfw = Get-STFWebReceiverService -VirtualPath /Citrix/StoreWeb Get-STFWebReceiverFeature -WebReceiverService $rfw

EXAMPLE 2 Get the AuthSDK U2F WebReceiver feature instance.

$rfw = Get-STFWebReceiverService -VirtualPath /Citrix/StoreWeb Get-STFWebReceiverFeature -Name U2FReceiverPlugin -WebReceiverService $rfw
Get-STFWebReceiverFeature