电脑的一个系统文件夹 4.8G 怎么减小

来源:百度知道 编辑:UC知道 时间:2024/05/27 04:16:03
Documents and Settings
竟然有4.8G 有的电脑不就是才 1G多一丁点嘛。
看里面的文件夹总和耶不到一个G 究竟是什么原因这么大?
怎么减肥 怎么删除

你在“我的文档”内放的东东太多了吧!移去没用的东东,或干脆改一下“我的文档”的路径设到别的分区去!(桌面上右键我的文档然后移动到别的分区!)

可以压缩

给你段代码清楚C盘垃圾文件
@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