Get-QADCertificateRevocationList
From PowerGUI Wiki
Retrieve certificate revocation lists from a certificate store or Active Directory.
This cmdlet is part of the Quest ActiveRoles Server product. Use Get-QARSProductInfo to view information about ActiveRoles Server.
Contents |
Syntax
Get-QADCertificateRevocationList [-Store] <X509CertificateStoreUI> [<CommonParameters>]
Get-QADCertificateRevocationList [-DirObj] <IGenericDirectoryObject> [<CommonParameters>]
Detailed Description
Use this cmdlet to retrieve certificate revocation lists from a particular location, which could be either a certificate store on the local computer or a CRL distribution point (cRLDistributionPoint) object in Active Directory. Each of the objects output by this cmdlet represents a certificate revocation list found in the specified location, and can be passed to other *-QADCertificateRevocationList cmdlets intended to manage certificate revocation lists.
Parameters
| Name | Description | Required? | Pipeline Input | Default Value |
|---|---|---|---|---|
| DirObj | Parameter value is an object representing the CRL distribution point (cRLDistributionPoint) object from which to a retrieve certificate revocation list. To retrieve the certificate revocation lists that are published to a particular CRL distribution point in Active Directory, you could first retrieve the corresponding cRLDistributionPoint objects by using Get-QADPKIObject and then pass the output objects to this parameter (see examples). | true | true (ByValue) | |
| Store | Parameter value is an object that identifies the certificate store from which to retrieve certificate revocation lists. Normally, this is an output object of the Get-QADLocalCertificateStore cmdlet (see examples). | true | true (ByValue) |
Examples
EXAMPLE 1
Get-QADLocalCertificateStore CA | Get-QADCertificateRevocationList
Description
Retrieve the certificate revocation lists from the Intermediate Certification Authorities certificate store in the CurrentUser store location.
EXAMPLE 2
Get-QADPKIObject CDP | Get-QADCertificateRevocationList
Description
Retrieve the certificate revocation lists from the CRL distribution point (CDP) container in Active Directory.
