Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FracVX/6a953a5e9420309c3388f04bd67cfc69 to your computer and use it in GitHub Desktop.
Save FracVX/6a953a5e9420309c3388f04bd67cfc69 to your computer and use it in GitHub Desktop.
PowerShell: Delete all cmdkey credentials #PowerShell #Windows
cmdkey /list | ForEach-Object{if($_ -like "*Ziel:*"){cmdkey /del:($_ -replace " ","" -replace "Ziel:","")}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment