Set-STFWebReceiverUserInterface
Set the WebReceiver User Interface options
Syntax
Set-STFWebReceiverUserInterface [-WebReceiverService] <WebReceiverService> [[-AutoLaunchDesktop] <Boolean>] [[-MultiClickTimeout] <Int32>] [[-EnableAppsFolderView] <Boolean>] [[-ShowAppsView] <Boolean>] [[-ShowDesktopsView] <Boolean>] [[-DefaultView] <Auto | Desktops | Apps>] [[-AlwaysShowTabs] <Boolean>] [[-ShowHomeTab] <Boolean>] [[-AppsViewTab] <All | Category | Uncategorized>] [[-DefaultCategoryName] <String>] [[-WorkspaceControlEnabled] <Boolean>] [[-WorkspaceControlAutoReconnectAtLogon] <Boolean>] [[-WorkspaceControlLogoffAction] <Disconnect | Terminate | None>] [[-WorkspaceControlShowReconnectButton] <Boolean>] [[-WorkspaceControlShowDisconnectButton] <Boolean>] [[-ReceiverConfigurationEnabled] <Boolean>] [[-AppShortcutsEnabled] <Boolean>] [[-AppShortcutsAllowSessionReconnect] <Boolean>] [[-CategoryViewCollapsed] <Boolean>] [[-MoveAppToUncategorized] <Boolean>] [[-ProgressiveWebAppEnabled] <Boolean>] [[-ShowProgressiveWebAppInstallPrompt] <Boolean>] [[-ShowActivityManager] <Boolean>] [[-ShowFirstTimeUse] <Boolean>] [[-PreventIcaDownloads] <Boolean>] [<CommonParameters>]
<!--NeedCopy-->
Detailed Description
Set the WebReceiver User Interface client options.
Related Commands
Parameters
| Name | Description | Required? | Pipeline Input | Default Value |
|---|---|---|---|---|
| WebReceiverService | The WebReceiver service. | true | true (ByValue) | |
| AutoLaunchDesktop | Whether to auto-launch desktop at login if there is only one desktop available for the user. | false | false | |
| MultiClickTimeout | The time period for which the spinner control is displayed, after the user clicks on the App/Desktop icon within Receiver for Web. | false | false | |
| EnableAppsFolderView | Allows the user to turn off folder view when in a locked-down store or unauthenticated store. | false | false | |
| ShowAppsView | Whether to show the apps view tab. | false | false | |
| ShowDesktopsView | Whether to show the desktops tab. | false | false | |
| DefaultView | The view to show after logon. | false | false | |
| AlwaysShowTabs | Whether to always show tabs, regardless of the number of apps & desktops a user has. Only applies to the Next Generation Experience. | false | false | |
| ShowHomeTab | Whether to show the Home tab. Only applies to the Next Generation Experience. | false | false | |
| AppsViewTab | Which apps view to show if the Apps tab is the default. Only applies to the Next Generation Experience. | false | false | |
| DefaultCategoryName | Which category to show if the apps view defaults to a category. Only applies to the Next Generation Experience. | false | false | |
| WorkspaceControlEnabled | Whether to enable workspace control. | false | false | |
| WorkspaceControlAutoReconnectAtLogon | Whether to perform auto-reconnect at login. | false | false | |
| WorkspaceControlLogoffAction | Whether to disconnect or terminate HDX sessions when actively logging off Receiver for Web. | false | false | |
| WorkspaceControlShowReconnectButton | Whether to show the reconnect button/link. | false | false | |
| WorkspaceControlShowDisconnectButton | Whether to show the disconnect button/link. | false | false | |
| ReceiverConfigurationEnabled | Enable the Receiver Configuration .CR download file. | false | false | |
| AppShortcutsEnabled | Enable App Shortcuts. | false | false | |
| AppShortcutsAllowSessionReconnect | Enable App Shortcuts to support session reconnect. | false | false | |
| CategoryViewCollapsed | Collapse the category view so that only the immediate contents of the selected category/sub-catagory are displayed. | false | false | |
| MoveAppToUncategorized | Move uncategorized apps into a folder named ‘Uncategorized’ when the category view is collapsed. | false | false | |
| ProgressiveWebAppEnabled | Enable Progressive Web App support. | false | false | |
| ShowProgressiveWebAppInstallPrompt | Enable prompt to install Progressive Web App. | false | false | |
| ShowActivityManager | Enable the Activity Manager within the end user interface. | false | false | |
| ShowFirstTimeUse | Enable the showing of the First Time Use screen within the end user interface. | false | false | |
| PreventIcaDownloads | Prevent download of ICA Files | false | false |
Input Type
Citrix.StoreFront.Model.ReceiverForWeb.WebReceiverService
Parameter WebReceiverService: A .NET class representing the configuration of a StoreFront Web Receiver service
System.Boolean
Parameter AutoLaunchDesktop: The .NET System.Boolean value type
System.Int32
Parameter MultiClickTimeout: The .NET System.Int32 value type
System.Boolean
Parameter EnableAppsFolderView: The .NET System.Boolean value type
System.Boolean
Parameter ShowAppsView: The .NET System.Boolean value type
System.Boolean
Parameter ShowDesktopsView: The .NET System.Boolean value type
Citrix.StoreFront.Model.ReceiverForWeb.DefaultUIView
Parameter DefaultView: The .NET Citrix.StoreFront.Model.ReceiverForWeb.DefaultUIView value type
System.Boolean
Parameter AlwaysShowTabs: The .NET System.Boolean value type
System.Boolean
Parameter ShowHomeTab: The .NET System.Boolean value type
Citrix.StoreFront.Model.ReceiverForWeb.DefaultAppsView
Parameter AppsViewTab: The .NET Citrix.StoreFront.Model.ReceiverForWeb.DefaultAppsView value type
System.String
Parameter DefaultCategoryName: The .NET System.String reference type
System.Boolean
Parameter WorkspaceControlEnabled: The .NET System.Boolean value type
System.Boolean
Parameter WorkspaceControlAutoReconnectAtLogon: The .NET System.Boolean value type
Citrix.StoreFront.Model.ReceiverForWeb.LogoffAction
Parameter WorkspaceControlLogoffAction: The .NET Citrix.StoreFront.Model.ReceiverForWeb.LogoffAction value type
System.Boolean
Parameter WorkspaceControlShowReconnectButton: The .NET System.Boolean value type
System.Boolean
Parameter WorkspaceControlShowDisconnectButton: The .NET System.Boolean value type
System.Boolean
Parameter ReceiverConfigurationEnabled: The .NET System.Boolean value type
System.Boolean
Parameter AppShortcutsEnabled: The .NET System.Boolean value type
System.Boolean
Parameter AppShortcutsAllowSessionReconnect: The .NET System.Boolean value type
System.Boolean
Parameter CategoryViewCollapsed: The .NET System.Boolean value type
System.Boolean
Parameter MoveAppToUncategorized: The .NET System.Boolean value type
System.Boolean
Parameter ProgressiveWebAppEnabled: The .NET System.Boolean value type
System.Boolean
Parameter ShowProgressiveWebAppInstallPrompt: The .NET System.Boolean value type
System.Boolean
Parameter ShowActivityManager: The .NET System.Boolean value type
System.Boolean
Parameter ShowFirstTimeUse: The .NET System.Boolean value type
System.Boolean
Parameter PreventIcaDownloads: The .NET System.Boolean value type
Return Values
None
Examples
EXAMPLE 1 Set WebReceiver multi-click timeout and desktop auto launch User Interface options
$receiver = Get-STFWebReceiverService
Set-STFWebReceiverUserInterface -WebReceiverService $receiver -AutoLaunchDesktop $false -MultiClickTimeout 10
<!--NeedCopy-->
REMARKS
Set WebReceiver multi-click timeout to 10 seconds and disable desktop auto launch in the User Interface options.