Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clear All Credentials in Credential Manager

Status
Not open for further replies.
May 15, 2000
244
0
16
US
Anyone know of a script or other way to clear all credentials in Credential Manager? I tried this in a batch file, but it didn't work:

@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



Domenick Pellegrini




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top