Disable certificate revocation checking

ADFS can't look up the certificate revocation status because certificates from PE don't include CRL information. Use PowerShell to disable certificate revocation checking so ADFS doesn't perform certificate revocation checks on the relying party trust, resulting in trust failures.

  1. In PowerShell, display the names for all relying party trusts:
    Get-AdfsRelyingPartyTrust | ft Name
  2. Find the trust with the display name you selected for your PE server.
  3. Determine the status of the revocation check for the PE trust:
    Get-AdfsRelyingPartyTrust -Name <DISPLAY NAME> | ft EncryptionCertificateRevocationCheck, SigningCertificateRevocationCheck
  4. If the encryption and signing certificate revocation checks show anything other than None, disable checking:
    Get-AdfsRelyingPartyTrust -Name <DISPLAY NAME> | Set-AdfsRelyingPartyTrust -SigningCertificateRevocationCheck None -EncryptionCertificateRevocationCheck None