Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 602 Bytes

active-directory-authentication-remove-trusted-azuread.md

File metadata and controls

18 lines (14 loc) · 602 Bytes
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].