Skip to content

Instantly share code, notes, and snippets.

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 naveed-ahmad-is/0e27578ccfbbf805280114ae6c0daaa1 to your computer and use it in GitHub Desktop.
Save naveed-ahmad-is/0e27578ccfbbf805280114ae6c0daaa1 to your computer and use it in GitHub Desktop.
Remove unwanted certificates out of the store Sitecore
Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject}
Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject} | Move-Item -Destination Cert:\LocalMachine\CA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment