电脑c盘的空间不能恢复怎么办
发布网友
发布时间:2022-04-23 16:53
我来回答
共3个回答
热心网友
时间:2022-05-01 18:55
注意不要将大型程序装到c盘,C盘只留系统文件。实在不行可以将系统缓存文件设置到其他盘(就是pagefile.sys,这个文件很大)。不熟悉的只能用工具软件来搞(超级兔子或者魔法师之类都可以)。
热心网友
时间:2022-05-01 20:13
保存以下文字成bat文件,运行清除系统垃圾
把没有软件删了,装软件不要装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 清除系统垃圾完成!
热心网友
时间:2022-05-01 21:48
把不用的还原点删了试试。