Is the garbage cleaning in the computer too annoying? Is there a shortcut?

  

Nowadays computers are used more and more frequently, and the system garbage is getting more and more, and the garbage that grows every day makes the users who are cleaning up annoyed. Is there any simple way to quickly clean up the garbage? Of course, With that, just a bunch of code can be completely done.

Computer junk includes temporary files (such as *.tmp, *._mp) log files (*.log), temporary help files (*.gid), disk check files (*.chk), temporary backups Files (such as *.old, *.bak) and other temporary files. In particular, if you do not clean IE's temporary folder "Temporary Internet Files" for a while, the cache file sometimes takes up hundreds of MB of disk space. These LJ files not only waste valuable disk space, but also make the system run slower like a snail. In fact, you can do this, in the lower left corner of the computer screen, press “ Start & Rarr; Program & Rarr; Attachment & Rarr; Notepad & rdquo;, copy the following text into it, point & ldquo; save as & rdquo;, path select & ldquo; desktop & rdquo ;, save type is "all files", the file name is "Clear System LJ.bat", it is complete. Remember that the suffix must be .bat, ok! Your garbage remover is so successful! Double-click it to quickly clean up the junk files, less than a minute.

====== is the following text (this line does not need to be copied) ============================= =

@echo off

echo Clearing system junk files, please wait...

del /f /s /q %systemdrive%*. Tmp

del /f /s /q %systemdrive%*._mp

del /f /s /q %systemdrive%*.log

del /f /s /q %systemdrive%*.gid

del /f /s /q %systemdrive%*.chk

del /f /s /q %systemdrive%*.old

del /f /s /q %systemdrive%recycled*.*

del /f /s /q %windir%*.bak

del /f /s /q %windir %prefetch*.*

rd /s /q %windir%temp & md %windir%temp

del /f /q %userprofile%cookies*.*

del /f /q %userprofile%recent*.*

del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"

del /f /s /q "%userprofile%Local SettingsTemp*.*"

del /f /s /q "%userprofile%recent*.*"

echo clear system LJ finished成!

echo. & pause

=====Up to here (this line does not need to be copied) ================= ============================================================================================================ Finish! Just a "slender" system!

Note: LJ is the meaning of garbage! This trick is easier to use than the so-called optimization master! The most important thing is the default system in the company. The environment or the computer in your home will not damage the system files.

Quickly clearing garbage is not a legend. Just use this code. You can quickly collect these codes and use them. I hope they will help you.

Copyright © Windows knowledge All Rights Reserved