Citrix StoreFront SDK PowerShell Modules

Get-STFStoreFarmConfiguration

Get common Store farm options

Syntax

Get-STFStoreFarmConfiguration [-StoreService] <StoreService> [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Get the details of an existing farm.

Parameters

Name Description Required? Pipeline Input Default Value
StoreService The Store service the farm options are required from true true (ByValue)  

Input Type

Citrix.StoreFront.Model.Store.StoreService

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

Return Values

Farm

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

Examples

EXAMPLE 1 Get all the farm configuration settings for the Store

$storeService = Get-STFStoreService  -SiteId 1 -VirtualPath '/Citrix/Store'
Get -STFStoreFarmConfiguration -StoreService $storeService
<!--NeedCopy-->

REMARKS

Returns all of the farm configuration options for the Store.

EXAMPLE 2 Get the certificate revocation policy for the Store

$storeService = Get-STFStoreService  -SiteId 1 -VirtualPath '/Citrix/Store'
(Get-STFStoreFarmConfiguration -StoreService $storeService).CertRevocationPolicy
<!--NeedCopy-->

REMARKS

Returns just the certificate revocation policy for the Store.

Get-STFStoreFarmConfiguration