电脑C盘空间缩小的很厉害

来源:百度知道 编辑:UC知道 时间:2024/05/26 23:13:59
电脑是无病毒的
清理了垃圾文件 还是变化不大。结果删了有用的软件
是什么原因让我的C盘变得那么小?有什么办法吗
谢谢大家的回答 说的在具体一点就更好了
比如:用户配置文件、磁盘备份的所在位置
怎么转存、调整大小及删除不必要的文件……
虚拟内存我已经做了调整:)

新建一个文本文档,内容为以下:
@echo off
echo 将在你的计算机上清理垃圾文件
echo. & pause
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

保存后,更改扩展名为.bat,记得更改的时候要在文件夹选项中取消隐藏已知文件类型扩展名。然后双击使用即可,这可