[This command is not available in non-domain environments]
NAME
Get-CertificationAuthority
SYNOPSIS
Retrieves all Enterprise Certification Authorities in current Active Directory forest.
SYNTAX
Get-CertificationAuthority [[-ComputerName] <String>] [<CommonParameters>]
Get-CertificationAuthority [[-Name] <String>] [<CommonParameters>]
DESCRIPTION
Retrieves all Enterprise Certification Authorities in current Active Directory forest.
PARAMETERS
-ComputerName <String>
Specifies Certification Authority computer name. (default)
This parameter accepts the following wildcard characters:
? - for single wildcard character matching
* - for multiple wildcard character matching
| Required? |
false |
| Position? |
1 |
| Default value |
* |
| Accept pipeline input? |
false |
| Accept wildcard characters? |
false |
-Name <String>
Specifies the particular Certification Authority display name.
This parameter accepts the following wildcard characters:
? - for single wildcard character matching
* - for multiple wildcard character matching.
| Required? |
false |
| Position? |
1 |
| Default value |
* |
| Accept pipeline input? |
false |
| Accept wildcard characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer and OutVariable. For more information, type,
"get-help about_commonparameters".
INPUTS
None.
OUTPUTS
PKI.CertificateAuthority.CertificateAuthority
NOTES
Author: Vadims Podans
Blog: http://en-us.sysadmins.lv
EXAMPLES
-------------- Example 1 --------------
C:\PS>Get-CertificationAuthority
Returns all Enterprise Certification Authorities objects in current forest.
-------------- Example 2 --------------
C:\PS>Get-CertificationAuthority -Name "RootCa"
Returns specified Certification Authority object.
-------------- Example 3 --------------
C:\PS>Get-CertificationAuthority "ca01*"
Retrieves all Enterprise Certification Authorities which server name starts with 'ca01'. Wildcards are useful when your infrastructure uses complex naming convention. You can put wildcards at any point in the string.
RELATED LINKS
Connect-CertificationAuthority