New-FasCertificateDefinition
SYNOPSIS
Create a Certificate Definition object (recipe for issuing a certificate).
SYNTAX
New-FasCertificateDefinition [-Name <String>] -MsTemplate <String> -CertificateAuthorities <String[]>
-AuthorizationCertificate <String> [-PolicyOids <String[]>] [-InSession <Boolean>] [-Address <String>]
[-UserName <String>] [-Password <String>] [<CommonParameters>]
<!--NeedCopy-->
DESCRIPTION
Create a Certificate Definition object that FAS will use to generate user certificates.
When generating a certificate, FAS requires various pieces of information. Including: - The CertificateTemplate to request (see Get-FasMsTemplate) - A list of loadbalanced/failover Certificate Authority Addresses (see Get-FasMsCertificateAuthority) - The id of the AuthorizationCertificate to use to Authorize the request (see Get-FasAuthorizationCertificate) - A list of additional Issuance Policy OIDs to add to the certificate request (see Get-FasPolicyOid) - A flag indicating if the certificate can be used as an in-session Virtual Smart Card, or only for the logon process.
Note that Certificate Definition objects can only be created and managed by the FAS Server administrator, although they can be referenced by “Rule” administrators.
EXAMPLES
EXAMPLE 1
PS C:\>
C:\PS> $CitrixFasAddress=(Get-FasServer)[0].Address
C:\PS> $DefaultCA=(Get-FasMsCertificateAuthority -Default).Address
C:\PS> $AuthorizationCertificate=(Get-FasAuthorizationCertificate)[0].Id
C:\PS> New-FasCertificateDefinition -CertificateAuthorities $DefaultCA -MsTemplate "Citrix_SmartcardLogon" -AuthorizationCertificate $AuthorizationCertificate
<!--NeedCopy-->
Description
This code generates a certificate definition that uses the first authorization certificate to issue Citrix_SmartcardLogon certificates from the default CA
PARAMETERS
-Name
Specify the name of this Certificate Definition (if not specified, defaults to the CertificateTemplate name)
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: [CertificateTemplate name]
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-AuthorizationCertificate
Specify the Id of an AuthorizationCertificate object
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: (required)
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-CertificateAuthorities
Specify a list of Addresses of Certificate Authorities that can issue these certificates
Type: String[]
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: (required)
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-PolicyOids
Specify a list of Issuance Policy OIDs to request in the certificate
Type: String[]
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: (empty)
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-InSession
Set to $FALSE to only allow this certificate to be used for authentication
Type: Boolean
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $FALSE
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-Address
Address of FAS Server (or $NULL to use $CitrixFasAddress)
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $CitrixFasAddress
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-UserName
User name to use for authentication to FAS server ($NULL for current user account)
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $NULL
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-Password
Password for authentication to FAS server ($NULL for current user account)
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $NULL
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
-MsTemplate
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
Variable, based on property name.
This cmdlet does accept input from the pipeline but only by property name.
OUTPUTS
void
This cmdlet does not return a value
NOTES
RELATED LINKS
Remove-FasCertificateDefinition