win7清除系统垃圾文件(手机垃圾清理方法)

在我们日常使用电脑的过程中,遇到电脑出现卡顿或者网速不流畅,我们都会习惯性的打开杀毒软件,清理下系统的垃圾文件和缓存文件,那么我们能不能自己动手清理系统垃圾文件呢?下面小编就来给大家分享下Win7自己动手清理系统垃圾文件的方法。

  1、首先了解下DEL命令:打开cmd,输入DEL /?出现以下解释:

win7清除系统垃圾文件(手机垃圾清理方法)

  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 清除系统垃圾完成!

复制代码

  3、根据上面的解释,就可以差不多了解以上程序的含义了。差不多的意思是,在安静模式下,删除一个或多个文件或者目录列表中只读文件和所有子目录中的指定的文件,删除全局通配符时,不要求确认。

  5、最后,只要双击运行此bat批处理文件即可清理系统垃圾了,清除完之后会自动退出。

发表评论

登录后才能评论