跪求高手指教~~~~~~请问如何清理C盘空间??????

来源:百度知道 编辑:UC知道 时间:2024/09/24 21:29:22
装了一个磁盘清理器...不过貌似没什么用~~~~~~
好用的话还有加分

WINDOWS自带的有一个软件啊,我用还可以,
程序--附件--系统--磁盘清理

教你一招。
将下面内容保存到记事本,然后把记事本改为.bat文件,双击运行bat文件等待删除完成就好了。如果你系统很长时间了,并且没有清理过,一般可以清理出1-2G。或者下载个优化大师,清理磁盘垃圾。
@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\*.*"
ech