如何帮系统清理垃圾文件

来源:百度知道 编辑:UC知道 时间:2024/05/17 03:35:04
XP系统用久了速度总感觉没刚装的时候快,请教各位有什么办法能提高速度呢?

可以到网上下载硬盘清理软件。
还可以用以下的方法:
建立一个记事本,把下面的内容复制进去然后把记事本的格式保存为.bat 格式,每次点击就会删除C盘的垃圾 特好用。不明白可以问我 QQ:49010767

@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