不知不觉中我们的电脑系统越来越慢了,磁盘空间越来越少,这时候就自然想起系统的优化,把没用的缓存文件清理掉,释放出更多的磁盘空间,以使系统运行速度流畅,那么该如何来操作清理呢?学会以下几个点,你便是小达人
1.快捷键win+r输入搜索cleanmgr。
2.可以打开电脑自带的清理程序。
3.快捷键win+r输入搜索cleanmgr /SAGERUN:99。
4.运行清理全部磁盘。
5.新建文本文档输入代码@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 %userprofil
e%\recent\*.*
del /f /s /q %userprofile%\Local Settin
gs\Tempo
rary Internet Files\*.*
del /f /s /q %userprofil
e%\Local Settings\Temp\*.*
del /f /s /q %userprofile%\recent\*.*
echo 清除系统LJ完成!
以bat格式保存以上代码!
6.可以鼠标右键磁盘点击属性,直接点击磁盘清理即可。