Storefront Powershell SDK 2402

Remove-STFStoreServiceExternalEndpoint

Remove an external endpoint associated with the Store

Syntax

Remove-STFStoreServiceExternalEndpoint [-StoreService] <StoreService> [-Id] <String> [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Remove an external endpoint associated with the Store.

Parameters

Name Description Required? Pipeline Input Default Value
StoreService Store service true true (ByValue)  
Id The name of the endpoint to remove. true false  

Input Type

Citrix.StoreFront.Model.Store.StoreService

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

System.String

Parameter Id: The .NET System.String reference type

Return Values

None

Examples

EXAMPLE 1 Remove an external endpoint

$store = Get-STFStoreService
            Remove-STFStoreServiceExternalEndpoint -StoreService $store -Id ExternalEndpoint
<!--NeedCopy-->

REMARKS

Remove an external endpoint

Remove-STFStoreServiceExternalEndpoint