请问曾经浏览过的网页信息会保存到注册表里吗

来源:百度知道 编辑:UC知道 时间:2024/06/17 01:22:39
比如我上过的一些网站的一些网页信息会保存在注册表里吗?我只知道会保存在IE上,IE-工具-IE选项-删除COOKIES,删除文件,情理历史记录IE那里的保存的网页浏览信息就没有了,但有人说最好也清除一下注册表,我不太懂注册表会保存曾经浏览过的网页信息吗,如果会怎么清除呢?请详细说明一下,谢谢!

不会的。注册表里的东西最好不要动,你实在想清理一下的话,可以用“超级兔子”来帮忙,这个软件有这个功能

不会
cookies保存在一个系统文件中 一般杀毒软件访问不了

注册表是删除系统垃圾文件的也包括IE记录等 下面是提供的 代码 复制到TXT 文档 之后把 TXT 改为 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\*.*“