Skip to content

Instantly share code, notes, and snippets.

@tomfanning
Last active September 13, 2023 11:33
  • Star 25 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Batch file to clear all credentials from Windows Credential Manager
@echo off
cmdkey.exe /list > "%TEMP%\List.txt"
findstr.exe Target "%TEMP%\List.txt" > "%TEMP%\tokensonly.txt"
FOR /F "tokens=1,2 delims= " %%G IN (%TEMP%\tokensonly.txt) DO cmdkey.exe /delete:%%H
del "%TEMP%\List.txt" /s /f /q
del "%TEMP%\tokensonly.txt" /s /f /q
echo All done
pause
@bharatuow
Copy link

Thanks for this. is there a way to only delete credentials from a specific source, say Adobe for example, using this script?

for /F "tokens=1,* delims= " %G in ('cmdkey /list ^| findstr Adobe') do cmdkey /delete %H

This worked for me!

Not working for me

@10xRod
Copy link

10xRod commented Aug 1, 2022

Thanks for this. is there a way to only delete credentials from a specific source, say Adobe for example, using this script?

for /F "tokens=1,* delims= " %G in ('cmdkey /list ^| findstr Adobe') do cmdkey /delete %H

This worked for me!

Thanks! This worked for me. I had to add an extra '%' to make it work, as follows:

for /F "tokens=1,2 delims= " %%G in ('cmdkey /list ^| findstr vscode') do cmdkey /delete %%H

@abu7midan
Copy link

@echo off
cmdkey.exe /list > "%TEMP%\List.txt"
findstr.exe Target "%TEMP%\List.txt" > "%TEMP%\tokensonly.txt"
FOR /F "tokens=1,2 delims= " %%G IN (%TEMP%\tokensonly.txt) DO cmdkey.exe /delete:%%H
del "%TEMP%\List.txt" /s /f /q
del "%TEMP%\tokensonly.txt" /s /f /q
echo All done
pause

@alpo67
Copy link

alpo67 commented May 25, 2023

Hi team I would like to add this command to the cleaning credentials bat file:
Go to the path %userprofile%\AppData\Local\Microsoft\Office\16.0\ and delete the folder named OfficeFileCache.

FOR /F "tokens=1,2 delims= " %%G IN ('cmdkey /list ^| findstr OfficeFileCache') do cmdkey /delete %%H

(I am not an expert, very sorry if sounds crazy)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment