Citrix StoreFront SDK PowerShell Modules

Remove-STFStoreService

Remove a Store service

Syntax

Remove-STFStoreService [-StoreService] <StoreService> [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Removes a Store service, any Receiver for Web sites and if no other Stores are using it the associated Authentication service.

Parameters

Name Description Required? Pipeline Input Default Value
StoreService Store service to remove 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

None

Examples

EXAMPLE 1 Remove Store service

$storeService = Get-STFStoreService
Remove-STFStoreService $storeService -Force
<!--NeedCopy-->

REMARKS

Remove the only Store including any associated Receiver for Web sites.

Remove-STFStoreService