很多用户都是用安全工具进行清除Cookies记录,但是安全工具仅仅删除当前用户的Cookies记录。本次给大家介绍如何删除Windows系统下所有用户的Cookies记录。
color 0a
cd
cls
::Title 正在清理本机所有帐户下的Cookie和浏览器垃圾文件
dir "%SystemDrive%\Documents and Settings\" /ad/b >%SystemDrive%\DirTmp.txt
for /f %%a in (%SystemDrive%\DirTmp.txt) do del /f /s /q "%SystemDrive%\Documents and Settings\%%a\Cookies\*.*"&del /f /s /q "%SystemDrive%\Documents and Settings\%%a\Local Settings\Temporary Internet Files\*.*"
del /f /q %SystemDrive%\DirTmp.txt
pause