求高手看看,这个程序有没有潜在危险啊,网上找的,删垃圾 的

来源:百度知道 编辑:UC知道 时间:2024/06/06 11:49:32
@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 s\*.*

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\*.*"

sfc /purg

没有危险,纯粹就是个清理垃圾文件的程序

没危险,这个是编程高手做的垃圾清理软件。 我用过效果比优化大使要好。

恩,听他们的没错

没有危险,清理垃圾用的批处理文件

你这是自己做删除系统垃圾吧?
算法比较安全 可以放心使用
临时文件*.tmp、*._mp
日志文件*.log
临时帮助文件*.gid
磁盘检查文件*.chk

没什么问题