How to clean up the cookie under win7 all accounts

  
1. Right click on the blank space in the desktop and select “New-Text Document”, then copy and paste the following code;

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 save the notebook as a file in the format of ".bat"; Finally click the “Save” button.
3, then double-click the newly saved ".bat" file, in the pop-up window you can see that the current program automatically clears the cookie file in the computer;
4, this time open the computer into the C drive The root directory, you can see a DirTmp.txt file, this file is just generated by the running program, which is all the accounts that have logged in to the machine, so we can manually delete it.
Copyright © Windows knowledge All Rights Reserved