用什么批处理命令才可以把IE浏览器缓存彻底删除?
答案:8 悬赏:60 手机版
解决时间 2021-12-02 06:14
- 提问者网友:一抹荒凉废墟
- 2021-12-01 05:16
用什么批处理命令才可以把IE浏览器缓存彻底删除?
最佳答案
- 五星知识达人网友:爱难随人意
- 2021-12-01 06:45
在桌面上点鼠标右键,选择新建一个“记事本”或“文本文档”,把下面的字复制进去,点“另存为”,把文件名定为“清除系统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)是为了节约网络的资源加速浏览,浏览器在用户磁盘上对最近请求过的文档进行存储,当访问者再次请求这个页面时,浏览器就可以从本地磁盘显示文档,这样就可以加速页面的阅览。但如果积累太多会导致电脑内产生垃圾文件。
@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)是为了节约网络的资源加速浏览,浏览器在用户磁盘上对最近请求过的文档进行存储,当访问者再次请求这个页面时,浏览器就可以从本地磁盘显示文档,这样就可以加速页面的阅览。但如果积累太多会导致电脑内产生垃圾文件。
全部回答
- 1楼网友:猎心人
- 2021-12-01 12:52
就下面的代码有用,其他都是骗人的。特别是Temporary Internet Files里面的文件根本就删除不掉。
echo 正在 清除Internet临时文件 ............
taskkill /im "iexplore.exe" /f
echo 关闭IE浏览器
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
echo 清除Cookies
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
echo 清除历史记录
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
echo 清除表单数据
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
echo 清除密码
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
echo 清除上述全部项目
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
echo 清除上述全部项目,以及IE中使用的加载项所保存的各种数据
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
@cls
echo.
echo. ***************************************
echo IE浏览器清理完毕
echo. ***************************************
echo.
pause
echo 正在 清除Internet临时文件 ............
taskkill /im "iexplore.exe" /f
echo 关闭IE浏览器
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
echo 清除Cookies
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
echo 清除历史记录
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
echo 清除表单数据
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
echo 清除密码
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
echo 清除上述全部项目
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
echo 清除上述全部项目,以及IE中使用的加载项所保存的各种数据
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
@cls
echo.
echo. ***************************************
echo IE浏览器清理完毕
echo. ***************************************
echo.
pause
- 2楼网友:痴妹与他
- 2021-12-01 11:27
我用的是TT,还有用MYIE的,在设置里有清除记录设置项,可以解决你的问题.
- 3楼网友:街头电车
- 2021-12-01 11:22
我用的是360安全卫士
- 4楼网友:一袍清酒付
- 2021-12-01 10:44
通过批处理命令无法彻底删除某些文件是正常的,
因为这些文件已经被占用了。你删不了。除非在DOS模式下。才可以删除。
根据我的记忆。DOS还没有一个能释放这些文件被占用的命令。
清除彻底点的话还是通过IE的internet属性里的清空
因为这些文件已经被占用了。你删不了。除非在DOS模式下。才可以删除。
根据我的记忆。DOS还没有一个能释放这些文件被占用的命令。
清除彻底点的话还是通过IE的internet属性里的清空
- 5楼网友:封刀令
- 2021-12-01 09:21
w@echo off
color 0A
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 清除系统LJ完成!
color 0A
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 清除系统LJ完成!
- 6楼网友:夜风逐马
- 2021-12-01 08:51
@echo off
color 0A
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 清除系统LJ完成!
color 0A
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 清除系统LJ完成!
- 7楼网友:杯酒困英雄
- 2021-12-01 07:16
@echo off
echo 清空IE临时文件目录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%temp%\*.*"
echo 清除系统完成!
echo. & pause
echo 清空IE临时文件目录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%temp%\*.*"
echo 清除系统完成!
echo. & pause
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯