Skip to content

Add-STFDesktopApplianceService

Create a new Desktop Appliance service

Syntax

Add-STFDesktopApplianceService [-VirtualPath] <String> [[-SiteId] <Int64>] [-StoreService] <StoreService> [[-MultiDesktop] <SwitchParameter>] [[-EnableExplicit] <SwitchParameter>] [[-EnableSmartCard] <SwitchParameter>] [[-EnableEmbeddedSmartcardSSO] <SwitchParameter>] [[-UseHttps] <SwitchParameter>] [[-FriendlyName] <String>] [<CommonParameters>]

Detailed Description

Create a new Desktop Appliance site that provides a user experience that is similar to logging on to a local desktop.

Parameters

Name Description Required? Pipeline Input Default Value
VirtualPath Virtual path of the Desktop Appliance service true false
SiteId IIS site id false false
StoreService Store service to publish desktops from true true (ByValue)
MultiDesktop Enable multi desktops false false
EnableExplicit Enable explicit authentication false false
EnableSmartCard Enable smart card authentication false false
EnableEmbeddedSmartcardSSO Enable pass-through with smart card authentication false false
UseHttps Configure the site to use https false false
FriendlyName The friendly name of the Desktop Appliance site false false

Input Type

System.String

Parameter VirtualPath: The .NET System.String reference type

System.Int64

Parameter SiteId: The .NET System.Int64 value type

Citrix.StoreFront.Model.Store.StoreService

Parameter StoreService: A .NET class representing the configuration of a StoreFront Store service

System.Management.Automation.SwitchParameter

Parameter MultiDesktop: The .NET System.Management.Automation.SwitchParameter value type

System.Management.Automation.SwitchParameter

Parameter EnableExplicit: The .NET System.Management.Automation.SwitchParameter value type

System.Management.Automation.SwitchParameter

Parameter EnableSmartCard: The .NET System.Management.Automation.SwitchParameter value type

System.Management.Automation.SwitchParameter

Parameter EnableEmbeddedSmartcardSSO: The .NET System.Management.Automation.SwitchParameter value type

System.Management.Automation.SwitchParameter

Parameter UseHttps: The .NET System.Management.Automation.SwitchParameter value type

System.String

Parameter FriendlyName: The .NET System.String reference type

Return Values

DesktopApplianceService

A .NET class representing the configuration of a StoreFront Desktop Appliance service

Examples

EXAMPLE 1 Create new Desktop Appliance service

$storeService = Get-STFStoreService
Add-STFDesktopApplianceService -VirtualPath $desktopApplianceVirtualPath -StoreService $storeService -MultiDesktop -EnableExplicit

REMARKS

Create a new Desktop Appliance service supporting multi desktops and explicit

authentication using the only Store service.

Was this article helpful?