如何安全清理垃圾文件
发布网友
发布时间:2022-08-19 05:49
我来回答
共5个回答
热心网友
时间:2023-11-13 16:55
手动清除系统垃圾要一个文件夹一个文件夹的找,很麻烦,我们可以利用DOS快速地删除系统中不必要的文件。方法如下:
建立一个批处理文件.(后缀名为.bst就是批处理文件)
新建一个记事本,写入或复制下面代码:
@echo off
echo 正在清除系统垃圾文件,请稍等......
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 Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统垃圾完成!
echo. & pause
OK后把点击文件里的另存为...把它命名为1.bat .bat前面是它的文件名.你也可以随意更改.
不用很专业的知识,我们就能看出来这段代码里包含了对temp文件夹以及对Temporary Internet Files文件夹的清理,看来真的很方便!
建立好此批处理文件后,保存在桌面上直接双击,就会弹出命令提示符,自动执行代码,很快就有大量垃圾被删除了。我们只要把这个文件保存在硬盘的某一分区下,每隔一段时间运行一次,就能很快捷地清除掉大量系统垃圾。
热心网友
时间:2023-11-13 16:56
@echo off
echo 正在清除系统垃圾文件,请稍等......
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 Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统LJ完成!
echo. & pause
热心网友
时间:2023-11-13 16:56
在(添加删除)下进行
或者用优化大师软件
热心网友
时间:2023-11-13 16:57
把上面这个兄弟发的东西复制下来保存在成123。BAT文件‘双击运行就OK了‘
热心网友
时间:2023-11-13 16:58
呵呵 不错,我也在用这个