德云社演出下载:关于磁盘碎片清理的问题

来源:百度文库 编辑:中科新闻网 时间:2024/04/29 11:15:30
我用电脑上的磁盘碎片整理装置进行整理后,仍有大量不能整理的文件,其容量有大的也有小的,对这些文件该如何处理?谢谢高手。

有用的就留,否则就删除.

用优化大师清理一下 再送你个清理垃圾的批处理 用记事本编辑就行
@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
完了保存为 清楚系统垃圾.bat