It's awesome! Notepad clean up the system garbage!
Source: Internet
Author: User
Keywordsnbsp; notepad install yourself disk
&http://www.aliyun.com/zixun/aggregation/37954.html ">nbsp; What do you choose to do when the system is stuffed? is installing the optimization software to automatically clean the system garbage? or according to the online tutorial manual cleaning? The former is likely to cause system failures, but also to install software, the latter has the technical threshold, cumbersome operation. Open Notepad, write a few lines of batch processing! You will soon have the most "green" garbage removal tool in history.
Wanted the most common junk Q file
In the garbage files that are generated in the daily use of Windows, which of the guys suddenly plays the "important role"? (see table below)
extension type cause tmp/_mp temporary files install software/software operation when log log file software operation/error write to hard disk GID Help index when using Help system the temporary index CHK disk check file unexpectedly Restart check disk when the system tries to recover the data old/ Bak temporary backup files The temporary files generated when the software is installed/upgraded
Old/bak temporary files generated during installation/upgrade of the interim backup files software
One minute to develop your own cleaning tools
Do not imagine the development software so mysterious, with the system from the batch, in just a minute you can develop a cleaning tool. Open Notepad, write the cleanup code according to the rules below, save the file name as "Cleansys.bat" when it is finished, and the filename can be taken, but the extension must be "bat" and double-click to run when you need to clean it.
@echo off
del/f/s/q%systemdrive%\*.tmp
del/f/s/q%windir%\*.bak
del/f/s/q "%USERPROFILE%\Local settings\temp\*.*"
Tip: where "del/f/s/q" means deleting all files that include read-only files in all subdirectories, and does not require confirmation, "%systemdrive%" is a system variable and the system identifies itself and points to the correct directory.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.