Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 458 Bytes

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

File metadata and controls

15 lines (13 loc) · 458 Bytes
author ms.service ms.topic ms.date ms.author
justinha
active-directory
include
02/08/2022
justinha

To modify a trusted certificate authority, use the Set-AzureADTrustedCertificateAuthority cmdlet:

    $c=Get-AzureADTrustedCertificateAuthority
    $c[0].AuthorityType=1
    Set-AzureADTrustedCertificateAuthority -CertificateAuthorityInformation $c[0]