File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,12 @@ Get-ADFSRelyingPartyTrust -Name $RelyingPartyTrust
2929$RelyingPartyTrust = " YourRelyingPartyTrustName"
3030Set-ADFSRelyingPartyTrust - TargetName $RelyingPartyTrust - Name " YourNewRelyingPartyTrustName"
3131
32- # Update Relying Party Trust Signing Certificate Revocation Check from 'CheckChainExcludeRoot' to 'None'
32+ # Update Relying Party Trust Signing Certificate Revocation Check from 'CheckChainExcludeRoot' (default) to 'None'
3333
3434$RelyingPartyTrust = " YourRelyingPartyTrustName"
35- Set-ADFSRelyingPartyTrust - TargetName $RelyingPartyTrust - SigningCertificateRevocationCheck " None"
35+ Set-ADFSRelyingPartyTrust - TargetName $RelyingPartyTrust - SigningCertificateRevocationCheck " None"
36+
37+ # Update Relying Party Trust Signature Algorithm from 'SHA-256' (default) to 'SHA-1'
38+
39+ $RelyingPartyTrust = " YourRelyingPartyTrustName"
40+ Set-ADFSRelyingPartyTrust - TargetName $RelyingPartyTrust - SignatureAlgorithm " http://www.w3.org/2000/09/xmldsig#rsa-sha1"
You can’t perform that action at this time.
0 commit comments