Storefront Powershell SDK 2402

New-STFSecureTicketAuthority

Create a new in memory SecureTicketAuthority that can be added and used for remote access and authentication.

Syntax

New-STFSecureTicketAuthority [-StaUrl] <String> [[-StaValidationEnabled] <Boolean>] [[-StaValidationSecret] <String>] [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Create a new SecureTicketAuthority that can be added to the a gateway object.

Parameters

Name Description Required? Pipeline Input Default Value
StaUrl Secure Ticket Authority Url true true (ByValue)  
StaValidationEnabled The flag to enable or disable STA endpoint validation false false  
StaValidationSecret The shared secret for STA endpoint validation false false  

Input Type

System.String

Parameter StaUrl: The .NET System.String reference type

System.Boolean

Parameter StaValidationEnabled: The .NET System.Boolean value type

System.String

Parameter StaValidationSecret: The .NET System.String reference type

Return Values

SecureTicketAuthorityUrl

The .NET Citrix.StoreFront.Model.Roaming.SecureTicketAuthorityUrl reference type

Examples

EXAMPLE 1 New-SecureTicketAuthority

$sta New-SecureTicketAuthority -StaUrl https://gateway.citrix.storefront -StaValidationEnabled $true -StaValidationSecret ABCDEFG
<!--NeedCopy-->

REMARKS

Add a secure ticket authority for Gateway.

New-STFSecureTicketAuthority