那个高手能帮我清理下C盘! 急~~~~~

来源:百度知道 编辑:UC知道 时间:2024/05/30 19:08:45
我家C盘也没放什么 就说我磁盘快要满了 在不清理 系统要从做! 高手帮帮我啊 ~!!!!

一个清理XP系统垃圾的小程序,很好用,而且源码开放,可以明白究竟删除的是哪一类文件,避免了一些垃圾清理程序乱删文件。已经试验过,很好用。
要清理的垃圾包括:
临时文件——*.tmp、*._mp
日志文件——*.log
临时帮助文件——*.gid
磁盘检查文件——*.chk
临时备份文件——如:*.old、*.bak等 .

新建一个记事本,并将以下内容粘贴到记事本中:

@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 "%userprofi