PowerShell Logo Small

Remove-CACrlDistributionPoint



This is the built-in help made by Microsoft for the command 'Remove-CACrlDistributionPoint', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

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

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


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



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=290944
Add-CACrlDistributionPoint
Get-CACrlDistributionPoint

REMARKS

<

Examples


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

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



Description

-----------

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




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

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



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.




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

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



Description

-----------

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