我想问,电脑里面一般什么文件占内存可以删的?他们具体是藏在哪里?谢谢!

来源:百度知道 编辑:UC知道 时间:2024/06/07 09:29:32

楼主没弄清楚问题
占内存的一般是正在运行的程序,对系统无关紧要的程序可以在通过在任务管理器中结束其相关进程来释放物理内存。
楼主你想问的可能是系统缓存吧,按以下的办法保证还你一个干干净净的系统。
将以下内容复制到一个新建的记事本文件中
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.