在我们日常使用电脑的过程中,遇到电脑出现卡顿或者网速不流畅,我们都会习惯性的打开杀毒软件,清理下系统的垃圾文件和缓存文件,那么我们能不能自己动手清理系统垃圾文件呢?
1、首先了解下DEL命令:打开cmd,输入DEL /?出现以下解释:
2、新建一记事本(后缀为.txt),重命名,在这命名为“清除系统垃圾.txt”,输入以下程序:
- 01@echo off
- 02echo 请勿关闭本窗口!
- 03echo 正在清除系统垃圾文件,请稍等......
- 04del /f /s /q %systemdrive%\*.tmp
- 05del /f /s /q %windir%\prefetch\*.* rd /s /q %windir%\temp & md %windir%\temp
- 06del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
- 07del /f /s /q %systemdrive%\*._mp
- 08del /f /s /q %windir%\*.bak
- 09del /f /s /q %systemdrive%\*.log
- 10del /f /s /q %systemdrive%\*.gid
- 11del /f /s /q %systemdrive%\*.chk
- 12del /f /s /q %systemdrive%\*.old
- 13del /f /s /q %systemdrive%\recycled\*.*
- 14del /f /q %userprofile%\cookies\*.*
- 15del /f /q %userprofile%\recent\*.*
- 16del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
- 17del /f /s /q "%userprofile%\recent\*.*"
- 18echo 清除系统垃圾完成!
复制代码@echo off
echo 请勿关闭本窗口!
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %windir%\prefetch\*.* rd /s /q %windir%\temp & md %windir%\temp
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q %systemdrive%\*._mp
del /f /s /q %windir%\*.bak
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 /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统垃圾完成!
3、根据上面的解释,就可以差不多了解以上程序的含义了。差不多的意思是,在安静模式下,删除一个或多个文件或者目录列表中只读文件和所有子目录中的指定的文件,删除全局通配符时,不要求确认。
4、保存文件,然后对记事本 “清除系统垃圾.txt”进行重命名,只要把后缀.txt改为后缀.bat,此时会弹出“如果改变文件扩展名,可能会导致文件不可用,确实要更改吗?”的提示,直接点击”是“,就创建好了带DEL命令的bat批处理文件(文件缩略图显示为两个齿轮)。
5、最后,只要双击运行此bat批处理文件即可清理系统垃圾了,清除完之后会自动退出。
(责任编辑:ku987小孩) |