应用介绍
ie缓存如果多了会严重的拖慢浏览器的运行速度,大家要养成经常清理ie缓存的好习惯,这个ie缓存自动清理工具其实是个批处理,运行它后可以自动清理IE记录/缓存/垃圾。
www.ouyaoxiazai.com禁止恶意剽窃转载。
1、清理IE缓存批处理.bat
@echo off
echo 正在清理,请稍等...
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.
2、清除IE的临时文件批处理.bat
@echo off
pause
echo 正在清理IE缓存文件,请稍等......
del /f /s /q %userprofile%\Local Settings\Temporary Internet Files\*.*
del /f /s /q %userprofile%\Local Settings\Temp\*.*
echo IE缓存清理完成!
echo. + pause
3、清理IE自动完成里表单信息批处理.bat
@echo off
title 清除IE自动完成表单记录 - [ouyaoxiazai.com]
mode con: cols=50 lines=5
color fc
set rf=%~dp0regset.txt
set rp=HKEY_CURRENT_USER\Software\Microsoft\Protected Storage System Provider
set au=e161255a-37c3-11d2-bcaa-00c04fd929db
for /f tokens=2* delims== %%a in (wmic computersystem get username /value) do (set un=%%a)
set un=%un:\=\\%
for /f tokens=2* delims== %%a in (wmic useraccount where caption^=%un% get SID /value^|findstr /i sid=) do (set uSID=%%a)
echo %rp%\%uSID% [7]>%rf%
echo %rp%\%uSID%\Data\%au%\%au% [DELETE]>>%rf%
echo %rp%\%uSID% [17]>>%rf%
regini %rf%
del %rf%
echo.+echo.+echo IE表单缓存清理完毕,按任何键退出...+echo.
pause>nul 2>nul