Citrix StoreFront SDK PowerShell Modules

Export-STFSamlEncryptionCertificate

Export the encryption certificate to be used by SAML Identity Providers

Syntax

Export-STFSamlEncryptionCertificate [-AuthenticationService] <AuthenticationService> [[-FilePath] <String>] [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Export, from the specified authentication service, the encryption certificate to be used by SAML Identity Providers

Parameters

Name Description Required? Pipeline Input Default Value
AuthenticationService The Authentication service from which to export the certificate. true true (ByValue)  
FilePath The path of the file to export to. false true (ByValue)  

Input Type

Citrix.StoreFront.Model.Authentication.AuthenticationService

Parameter AuthenticationService: A .NET class representing the configuration of a StoreFront Authentication service

System.String

Parameter FilePath: The .NET System.String reference type

Return Values

None

Examples

EXAMPLE 1 Export the encryption certificate to be used by the SAML IdentityProvider.

$authentication = Get-STFAuthenticationService
Export-STFSamlEncryptionCertificate -AuthenticationService $authentication -FilePath C:\windows\temp\EncryptionCertificate.cer
<!--NeedCopy-->

REMARKS

Export the encryption certificate to be used by the SAML Identity Provider.

Export-STFSamlEncryptionCertificate