You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

Disable revocation check on the certificate of a claims provider

Execute the following Powershell commands:

Get-AdfsClaimsProviderTrust | Select-Object Identifier, SigningCertificateRevocationCheck, EncryptionCertificateRevocationCheck

Get-AdfsClaimsProviderTrust -Identifier "name-of-the-claims-provider" | Set-AdfsClaimsProviderTrust -SigningCertificateRevocationCheck None -EncryptionCertificateRevocationCheck None

Disable revocation check on the certificate of a relying party

Execute the following Powershell commands:

Get-AdfsRelyingPartyTrust | Select-Object Identifier, SigningCertificateRevocationCheck, EncryptionCertificateRevocationCheck

Get-AdfsRelyingPartyTrust -Identifier "name-of-the-relying-party"  | Set-AdfsRelyingPartyTrust -SigningCertificateRevocationCheck None -EncryptionCertificateRevocationCheck None


  • No labels