Skip to content

Instantly share code, notes, and snippets.

@lennybacon
Last active April 26, 2020 21:17
Show Gist options
  • Save lennybacon/02457333fda4c942d1baae907e1e6e29 to your computer and use it in GitHub Desktop.
Save lennybacon/02457333fda4c942d1baae907e1e6e29 to your computer and use it in GitHub Desktop.
Remove Fiddler Certificates
Get-ChildItem Cert:\CurrentUser\My
| Where-Object {$_.Issuer -eq 'CN=DO_NOT_TRUST_FiddlerRoot, O=DO_NOT_TRUST, OU=Created by http://www.fiddler2.com'}
| Remove-Item;
# Requires user interaction
#Get-ChildItem Cert:\CurrentUser\Root
#| Where-Object {$_.Issuer -eq 'CN=DO_NOT_TRUST_FiddlerRoot, O=DO_NOT_TRUST, OU=Created by http://www.fiddler2.com'}
#| Remove-Item;
# Requires user interaction
#Get-ChildItem Cert:\LocalMachine\Root
#| Where-Object {$_.Issuer -eq 'CN=DO_NOT_TRUST_FiddlerRoot, O=DO_NOT_TRUST, OU=Created by http://www.fiddler2.com'}
#| Remove-Item;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment