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