Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Set-EntraTrustedCertificateAuthority

Updates a trusted certificate authority.

Syntax

Default (Default)

Set-EntraTrustedCertificateAuthority

 -CertificateAuthorityInformation <CertificateAuthorityInformation>
 [<CommonParameters>]

Description

The Set-EntraTrustedCertificateAuthority cmdlet updates a trusted certificate authority in Microsoft Entra ID.

Examples

Example 1: Updates the trusted certificate authorities that are defined in your directory

Connect-Entra -Scopes 'Organization.ReadWrite.All'
$cer = Get-EntraTrustedCertificateAuthority #Get the CertificateAuthorityInformation object
$cer[0].CrlDistributionPoint = "https://example.crl"
Set-EntraTrustedCertificateAuthority -CertificateAuthorityInformation $cer[0]
Id
--
aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb

This command updates the trusted certificate authorities that are defined in your directory.

  • -CertificateAuthorityInformation Parameter specifies a CertificateAuthorityInformation object.

Parameters

-CertificateAuthorityInformation

Specifies a CertificateAuthorityInformation object.

Parameter properties

Type:CertificateAuthorityInformation
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Related Links


Feedback

Was this page helpful?