How to clear all account cookies under windows7

  

How to operate:
1, first open Notepad, then copy the following to Notepad:
echo off
color 0a
cd
cls
::Title is cleaning up cookies and browser junk files under all accounts of this machine
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%%aCookies*.*”&del /f /s /q “% SystemDrive%Documents and Settings%%aLocal SettingsTemporary Internet Files*.*”
del /f /q %SystemDrive%DirTmp.txt
pause
2, then click “File&rdquo in Notepad ; menu, then select “ save as & rdquo; command;
3, in the pop-up dialog box, first select “ save type & rdquo; for & ldquo; all files & rdquo;, then in & ldquo; file name & rdquo; Enter the file name, end with .bat, and finally click the “Save” button;
4, then find and double-click the saved .bat file. In the pop-up window, you can see that the current program is automatically cleaning up the cookie files under all accounts in the computer;
5, at this time you open the "roots" of the C drive under "My Computer", you should be able to see A DirTmp.txt file, this file is just generated by our program, which is all the accounts that have logged in to this machine, we can delete it manually!
The most stupid way to clear cookies is to open each account separately. Delete, but this operation is time-consuming and labor-intensive. After the introduction of the above method, as long as you master a skill, you can clear all account cookies under windows7 system, which is simple and convenient.

Copyright © Windows knowledge All Rights Reserved