Skip to content

Instantly share code, notes, and snippets.

@peplau
Created March 30, 2021 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peplau/950eeb5e06cb8c8e8485f9e2b0180c94 to your computer and use it in GitHub Desktop.
Save peplau/950eeb5e06cb8c8e8485f9e2b0180c94 to your computer and use it in GitHub Desktop.
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