Citrix StoreFront SDK PowerShell Modules

Get-STFStoreFarm

Get farm configured for a Store

Syntax

Get-STFStoreFarm [-StoreService] <StoreService> [[-FarmName] <String>] [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Get the XenApp\XenDesktop farms configured in the Store service.

Parameters

Name Description Required? Pipeline Input Default Value
StoreService The Store service to query true true (ByValue)  
FarmName The farm name to request settings for false true (ByValue)  

Input Type

Citrix.StoreFront.Model.Store.StoreService

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

System.String

Parameter FarmName: The .NET System.String reference type

Return Values

Farm

A .NET class representing the configuration of a Farm in StoreFront Store service

Examples

EXAMPLE 1 Get all Store farms

$storeservice = Get-STFStoreService
Get-STFStoreFarm -StoreService $storeservice
<!--NeedCopy-->

REMARKS

Get all farms configured in a Store

OUTPUT

FarmName                      : Controller
Port                          : 80
SSLRelayPort                  : 443
TransportType                 : HTTP
LoadBalance                   : True
FarmType                      : XenApp
Servers                       : {xa65}
AllFailedBypassDuration       : 0
BypassDuration                : 60
TicketTimeToLive              : 100
RadeTicketTimeToLive          : 100

FarmName                      : Controller2
Port                          : 80
SSLRelayPort                  : 443
TransportType                 : HTTP
LoadBalance                   : False
FarmType                      : XenDesktop
Servers                       : {XD75}
AllFailedBypassDuration       : 0
BypassDuration                : 60
TicketTimeToLive              : 100
RadeTicketTimeToLive          : 100
XMLValidationEnabled          : True
XMLValidationSecret           : Z9IUJNMSK76YH2SM&G%L013NMDK76YHW
<!--NeedCopy-->
Get-STFStoreFarm