How does the Win7 system delete cookies? How to make a one-click cleaning cookie batch?

  

When we browse the webpage, in order to facilitate the next time you no longer enter the account password to log in to the webpage, you can use the browser's remember webpage function, and the saved account password is stored in the cookie, which not only contains The password for the web account we visited, and the form records we left on the webpage.

Steps:

1. Open Notepad first, then copy the following to Notepad:
echo off color 0a cd cls ::Title is cleaning all accounts under this machine Cookies and browser junk files 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

2, then click on the “file” menu in Notepad, then select “Save For the ” command;

3, in the pop-up dialog box, first select “ save type & rdquo; for & ldquo; all files & rdquo;, then enter the file name in the “ file name & rdquo; ending with .bat, and finally click & ldquo; save & rdquo; button;

4, then find and double-click .Bat files stored in the pop-up window, you can see the current programs that are automatically clean cookie files in all the computer accounts;

5, then you open the & ldquo; My Computer & rdquo Under the C drive root directory, 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 manually delete it!

One-click cleaning of your cookies saves you time and effort, so you don't need to open the website one by one to clear the account you remember.

Copyright © Windows knowledge All Rights Reserved