Skip to content

Instantly share code, notes, and snippets.

View vinayiitkgp's full-sized avatar

Vinay vinayiitkgp

  • Metlife
  • Morrisville NC
View GitHub Profile
@janikvonrotz
janikvonrotz / Delete-AllCmdKeyCredentials.ps1
Created December 6, 2013 07:39
PowerShell: Delete all cmdkey credentials #PowerShell #Windows
cmdkey /list | ForEach-Object{if($_ -like "*Ziel:*"){cmdkey /del:($_ -replace " ","" -replace "Ziel:","")}}