author | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|
justinha |
active-directory |
include |
06/07/2022 |
justinha |
To remove a trusted certificate authority, use the Remove-AzureADTrustedCertificateAuthority cmdlet:
$c=Get-AzureADTrustedCertificateAuthority
Remove-AzureADTrustedCertificateAuthority -CertificateAuthorityInformation $c[2]
You can change the command to remove 0th element by changing to
Remove-AzureADTrustedCertificateAuthority -CertificateAuthorityInformation $c[0]
.