当前位置:首页 » 硬盘大全 » 批处理删除电脑缓存文件
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

批处理删除电脑缓存文件

发布时间: 2022-04-01 02:04:11

Ⅰ 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"
for /r c:windowsPrefetch %%a in (*.*) do del /f /s /q "%%a"
for /r %userprofile%AppDataLocalTemp %%a in (*.*) do del /f /s /q "%%a"
for /r "%localappdata%MicrosoftWindowsTemporary Internet Files" %%a in (*.*) do del /f /s /q "%%a"
for /r %localappdata%MicrosoftWindowsHistory %%a in (*.*) do del /f /s /q "%%a"
for /r %appdata%MicrosoftWindowsCookies %%a in (*.*) do del /f /s /q "%%a"
for /r %windir%SoftwareDistributionDownload %%a in (*) do del /f /s /q "%%a"
for /r "%windir%Downloaded Program Files" %%a in (*) do del /f /s /q "%%a"
for /r %windir%System32LogFiles %%a in (*) do del /f /s /q "%%a"
del /f /s /q %systemdrive%hiberfil.sys
pause & exit
这样按任意键就退出了
3、将“记事本”后缀名改为“.bat”。
4、最后双击“.bat”运行文件即可。

Ⅱ 如何写一段BAT代码自动清理电脑缓存

@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\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp"
rmdir /s /q "%userprofile%\Local Settings\Temp"Data\Default\Cache"
rmdir /s /q "%userprofile%\Local Settings\Temporary Internet Files"
echo 清理系统垃圾完成!
echo. & pause

/*将以上复制到记事本保存为 a.bat双击运行即可*/

Ⅲ 有谁知道所有清除垃圾,系统,缓存文件的bat文件

深度论坛找的代码,请粘贴到txt文件然后另存为bat文件,即可使用(记得选所有类型)。

@echo off
Title 深度[Deepin] Windows7系统垃圾快速清理
color 0a
mode con cols=55 lines=16
echo.
echo.
echo.
echo 欢迎使用 深度 Windows7系统垃圾快速清理工具
echo.
echo.
echo.
echo 按任意键开始清理垃圾文件......
echo.
pause>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Tmp文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.tmp" /d /s>nul 2>nul
attrib -r -a -s -h "%systemdrive%\*._mp" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.tmp">nul 2>nul
del /f /s /q "%systemdrive%\*._mp">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理日志文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.log" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.log">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Gid文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.gid" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.gid">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Chk文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.chk" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.chk">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Old文件....
echo.
attrib -r -a -s -h "%systemdrive%\*.old" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\*.old">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理回收站....
echo.
attrib -r -a -s -h "%systemdrive%\recycled\*.*" /d /s>nul 2>nul
del /f /s /q "%systemdrive%\recycled\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理备份文件....
echo.
attrib -r -a -s -h "%windir%\*.bak" /d /s>nul 2>nul
del /f /s /q "%windir%\*.bak">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理文件使用痕迹....
echo.
attrib -r -a -s -h "%windir%\prefetch\*.pf" /d /s>nul 2>nul
del /f /s /q "%windir%\prefetch\*.pf">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理Cookies文件....
echo.
attrib -r -a -s -h "%userprofile%\cookies\*.*" /d /s>nul 2>nul
del /f /q "%userprofile%\cookies\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理上网产生的临时文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temporary Internet Files\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理临时文件....
echo.
attrib -r -a -s -h "%userprofile%\Local Settings\Temp\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\Local Settings\Temp\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo.
echo 正在清理用户历史文件....
echo.
attrib -r -a -s -h "%userprofile%\recent\*.*" /d /s>nul 2>nul
del /f /s /q "%userprofile%\recent\*.*">nul 2>nul
cls
echo.
echo.
echo.
echo 清理系统垃圾完成!
echo.
echo.
echo.
echo 按任意键退出......
pause>nul
exit

Ⅳ bat删除IE缓存,批处理求优化

del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
这句是清除当前帐号下的临时文件夹

del /f /s /q "C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files\*.*"
这一句是清除楼主所指定的临时文件夹

Ⅳ 用什么批处理命令才可以把IE浏览器缓存彻底删除

在桌面上点鼠标右键,选择新建一个“记事本”或“文本文档”,把下面的字复制进去,点“另存为”,把文件名定为“清除系统LJ.bat”就完成,记住后缀名一定要是.bat,好ok了!你的垃圾清除器就这样制作成功了!双击它就能很快地清理垃圾文件,大约一分钟不到。
@echo off
echo 正在清除系统垃圾文件,请稍等......
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 清除系统垃圾完成!

浏览器缓存(Browser Caching)是为了节约网络的资源加速浏览,浏览器在用户磁盘上对最近请求过的文档进行存储,当访问者再次请求这个页面时,浏览器就可以从本地磁盘显示文档,这样就可以加速页面的阅览。但如果积累太多会导致电脑内产生垃圾文件。

Ⅵ 一键清理电脑垃圾.bat的时候删除浏览器缓存的文件吗

貌似删的,还附带删除系统缓存文件~

Ⅶ 如何建个批处理清除tmp文件

只清理TMP文件的:
@echo off
del /f /s /q %temp%\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /s /q %userprofile%\Local Settings\Temporary Internet Files\*.*
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*

网上有些其他的清理,太狠,例如清理log文件,可能会把某些反安装的软件日志给删掉,造成无法卸载,建议别删掉太多。主要是临时目录和IE缓存。
其实还有就是病毒软件的定义(有些软件会保留很多历史文件)这个你得根据不同软件来自己找到具体目录,再按上面办法制作。

Ⅷ 这个清理系统缓存批处理清理缓存有些不足,不知道是否可以在加几项

能成了已经

Ⅸ 求清除上网缓存及临时文件的批处理

net stop "task scheler"
@echo off
color 0f
mode con cols=83 lines=3
title 欢迎您使用
echo 正在为您清除系统垃圾文件,请稍等......
taskkill /F /IM conime.exe
echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old conime.exe,请稍等...
del /f /s /q %systemdrive%\conime.exe
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
echo 清空垃圾箱,备份文件和预缓存脚本...
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
echo 清空cooke和最近历史...
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
echo 清空IE临时文件目录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"@cho 清理系统盘无用文件...
%windir%\system32\sfc.exe /purgecache
echo 系统LJ完成!
echo. & pause
保存.....BAT

Ⅹ 怎样编辑一个批处理删除IE缓存、历史记录和windows操作痕迹

在桌面上点鼠标右键,选择新建一个“记事本”或“文本文档”,把下面的字复制进去,点“另存为”,把文件名定为“清除系统LJ.bat”就完成,记住后缀名一定要是.bat,好ok了!你的垃圾清除器就这样制作成功了!双击它就能很快地清理垃圾文件,大约一分钟不到。

@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %windir%prefetch*.*
rd /s /q %windir% emp & md %windir% emp
del /f /q %userprofile%cookies*.*
del /f /q %userprofile% ecent*.*
del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"
del /f /s /q "%userprofile%Local SettingsTemp*.*"
del /f /s /q "%userprofile% ecent*.*"
echo 清除系统垃圾完成!
echo. & pause