Created
March 30, 2021 18:53
-
-
Save peplau/950eeb5e06cb8c8e8485f9e2b0180c94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject} | |
If the above brings entries, we need to remove them with: | |
Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject} | Move-Item -Destination Cert:\LocalMachine\CA | |
Source: https://getfishtank.ca/blog/sitecore-9-xconnect-status-403-forbidden-certificate-error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment