发新话题
打印

[原创] 隐藏清理系统垃圾--我刚做的

隐藏清理系统垃圾--我刚做的

双击即运行清理垃圾,看不到界面,只要双击就能清理垃圾,很简单的小工具

附件

清理系统垃圾.rar (58.96 KB)

2008-7-6 21:06, 下载次数: 628

TOP

我试试了下  不显示  本州岛效果怎么样啊

TOP

我把它解开,就这个批处理,以前就有,用得着这么复杂吗

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

TOP

收藏了,感谢

TOP

发新话题