Remove-CACrlDistributionPoint

Remove-CACrlDistributionPoint

Removes the URI for the certificate revocation list (CRL) distribution point (CDP) from the certification authority (CA).

Sintaxis

Parameter Set: Default
Remove-CACrlDistributionPoint [-Uri] <String> [-AddToCertificateCdp] [-AddToCrlCdp] [-AddToCrlIdp] [-AddToFreshestCrl] [-Force] [-PublishDeltaToServer] [-PublishToServer] [ <CommonParameters>]

Descripción detallada

The Remove-CACRLDistributionPoint cmdlet removes the uniform resource identifier (URI) for the certificate revocation list (CRL) distribution point from the certification authority (CA).

Parámetros

-AddToCertificateCdp

Remove from the CDP extension of issued certificates.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByPropertyName)

¿Aceptar caracteres comodín?

false

-AddToCrlCdp

Remove from the certificate revocation list (CRL).

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByPropertyName)

¿Aceptar caracteres comodín?

false

-AddToCrlIdp

Remove from the IDP extension of issued certificates.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByPropertyName)

¿Aceptar caracteres comodín?

false

-AddToFreshestCrl

Remove from the most recent (freshest) certificate revocation list (CRL).

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Force

Fuerza que el comando se ejecute sin pedir confirmación al usuario.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-PublishDeltaToServer

Remove the delta certificate revocation list (CRL).

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByPropertyName)

¿Aceptar caracteres comodín?

false

-PublishToServer

Remove from the base certificate revocation list (CRL).

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Uri<String>

Specifies the uniform resource identifier (URI) for the distribution point location of the certificate revocation list (CRL). This is the location from where status information about certificate revocation has been retrieved and/or the location the CRL was published.

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByValue, ByPropertyName)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • System.String

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • Microsoft.CertificateServices.Administration.Commands.CA.CrlDistributionPointResult

    There is an output property named RestartCA, which when set to True indicates that the CA service (certsvc) needs to be restarted.

Ejemplos

-------------------------- EXAMPLE 1 --------------------------

Description

-----------

Removes all URIs for all distribition points that contain the specified URI value ("http://corp.contoso.com/rootca.crl").

C:\PS>Remove-CACrlDistributionPoint -URI "http://corp.contoso.com/rootca.crl"

-------------------------- EXAMPLE 2 --------------------------

Description

-----------

Removes only the URIs that are set to a value of "http://corp.contoso.com/rootca.crl" and for which the AddToCertificateCdp is set.

C:\PS>Remove-CACrlDistributionPoint -Uri "http://corp.contoso.com/rootca.crl" -AddToCertificateCdp

-------------------------- EXAMPLE 3 --------------------------

Description

-----------

Removes only the uniform resource indicators (URIs) that are unique to the URI specified ("https://www.contoso.com/pki/orca.crl") and the combination of flags that are set or included (AddToCertificateCdp, AddToCrlIdp).

C:\PS>Remove-CACrlDistributionPoint -Uri "https://www.contoso.com/pki/orca.crl" -AddToCertificateCdp -AddToCrlIdp

Temas relacionados

Add-CACrlDistributionPoint

Get-CACrlDistributionPoint