邮政快递员是正式工吗:系统盘是什么问题?

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/30 02:56:11
我的系统C盘有19G空间,系统安装和文件共用了约5G空间,而现在只剩下2G空间了.这是怎么回事呐?
我要怎么办呐?
问题补充:我已经把所有文件(包括受保护的系统文件也显示出来才5G啊,我想知道是怎么回事?现在磁盘整理都不行了....也修复过了,真不知道是什么原因???/

清理TEMP.有两个TEMP

看看Documents and Settings这个文件夹多大,如果很大的话,就说明你里面的临时文件太多了,垃圾文件也多了,你清理一下就好了.

把下面的内容保存为BAT文件,然后执行.

@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 清除系统垃圾完成!
echo. & pause