电脑批处理删除缓存文件的方法
许多Win8用户都知道当系统运行速度受到影响的时候用第三方软件来清理系统缓存,那么除了使用第三方软件还有别的方法吗?下面小编就介绍下批处理删除缓存文件的方法。
方法:
1、在Windows8桌面上按鼠标右键新建“文本文档”。
2、复制以下代码粘贴到记事本内。
@echo off
color 1e
for /r c: %%a in (*.tmp *.chk *.gid *._mp *.old *.bak *.log) do del /f /s /q “%%a”
for /r c:windowstemp %%a in (*.*) do del /f /s /q “%%a”...