|
5872169
高级用户
   
积分 959
发帖 474
注册 2007-10-25
状态 离线
|
『楼 主』:
有没有IE属性删除浏览历史记录的命令?
使用 LLM 解释/回答一下
有没有IE属性删除浏览历史记录的命令?
Is there a command to delete browsing history in IE properties?
|
|
2008-9-16 12:18 |
|
|
HAT
版主
       
积分 9023
发帖 5017
注册 2007-5-31
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
|

 |
|
2008-9-16 12:27 |
|
|
5872169
高级用户
   
积分 959
发帖 474
注册 2007-10-25
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
Originally posted by HAT at 2008-9-16 12:27 PM:
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
即使删除注册表项也能在C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files里面找到垃圾,如果用批处理删除有一些文件无法删除。看来没有这个命令了。
Originally posted by HAT at 2008-9-16 12:27 PM:
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
Even if you delete the registry key, you can still find garbage in "C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files". If you use a batch script to delete, some files cannot be deleted. It seems there is no such command anymore.
|
|
2008-9-16 13:00 |
|
|
slore
铂金会员
      
积分 5212
发帖 2478
注册 2007-2-8
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
LZ要的是删除历史记录
临时文件夹是另一回事。。。
LZ wants to delete the history records. The temporary folder is another matter...
|

S smile 微笑,L love 爱,O optimism 乐观,R relax 放松,E enthusiasm 热情...Slore |
|
2008-9-16 13:25 |
|
|
HAT
版主
       
积分 9023
发帖 5017
注册 2007-5-31
状态 离线
|
『第 5 楼』:
Re 3楼
使用 LLM 解释/回答一下
@echo off
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
set TarDir="%userprofile%\Local Settings\Temporary Internet Files\Content.IE5"
rd /s /q %TarDir%>nul 2>nul
del /s /q "%userprofile%\Cookies\*.*">nul 2>nul
@echo off
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
set TarDir="%userprofile%\Local Settings\Temporary Internet Files\Content.IE5"
rd /s /q %TarDir%>nul 2>nul
del /s /q "%userprofile%\Cookies\*.*">nul 2>nul
|

 |
|
2008-9-16 14:30 |
|
|
5872169
高级用户
   
积分 959
发帖 474
注册 2007-10-25
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
TarDir是什么意思?请HAT兄解释一下好吗,这是我第一次见这个。
What does "TarDir" mean? Could Brother HAT explain it for me? This is the first time I've seen this.
|
|
2008-9-16 14:50 |
|
|
5872169
高级用户
   
积分 959
发帖 474
注册 2007-10-25
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
Originally posted by HAT at 2008-9-16 02:30 PM:
@echo off
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
set TarDir="%userprofile%\Local Settings\Temporary Internet Files\Content.IE5&q ...
这个代码测试了,但在IE/属性/设置/查看文件,里还有垃圾文件。
Originally posted by HAT at 2008-9-16 02:30 PM:
@echo off
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs" /va /f
set TarDir="%userprofile%\Local Settings\Temporary Internet Files\Content.IE5&q ...
This code was tested, but there are still junk files in IE/Properties/Settings/View Files.
|
|
2008-9-16 14:59 |
|
|
HAT
版主
       
积分 9023
发帖 5017
注册 2007-5-31
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
set TarDir=xxx
就是定义一个变量啊,第一次见?
IE临时目录中的index.dat用系统自带的工具/命令是无法删除的,需要借助第三方工具。
set TarDir=xxx
It's just defining a variable? First time seeing it?
The index.dat in the IE temporary directory cannot be deleted using the system's built-in tools/commands; a third-party tool is needed.
|

 |
|
2008-9-16 15:08 |
|
|
slore
铂金会员
      
积分 5212
发帖 2478
注册 2007-2-8
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
你看到的是“虚”真实的文件已经删除了,真正的缓存文件在content.ie5里面。
The "virtual" real file has been deleted, and the real cache file is in content.ie5.
|

S smile 微笑,L love 爱,O optimism 乐观,R relax 放松,E enthusiasm 热情...Slore |
|
2008-9-16 19:02 |
|