|
gene771771
初级用户
 
积分 105
发帖 77
注册 2006-11-9 来自 重庆
状态 离线
|
『楼 主』:
用什么批处理命令才可以把IE浏览器缓存彻底删除?
使用 LLM 解释/回答一下
用什么批处理命令才可以把IE浏览器缓存彻底删除?
IE缓存的路径%userprofile%\Local Settings\Temporary Internet Files\
以下的批处理无法将IE缓存清理掉:
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
以下的也不行,只能删除小部分的:
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\"
请各位高手指教,用什么批处理命令可以彻底删除IE缓存中所有文件?
补充:可以先用Tskill或者Taskkill 结束 Iexplore,但是我试过了,还是删除不了。。。
Last edited by gene771771 on 2006-12-16 at 11:57 AM ]
What batch command can be used to completely delete the IE browser cache?
The path of IE cache is %userprofile%\Local Settings\Temporary Internet Files\
The following batch processing cannot clear the IE cache:
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
The following also doesn't work, only a small part can be deleted:
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\"
Please ask the experts for guidance, what batch command can be used to completely delete all files in the IE cache?
Supplementary: You can first use Tskill or Taskkill to end Iexplore, but I have tried it and still can't delete it...
Last edited by gene771771 on 2006-12-16 at 11:57 AM ]
|
|
2006-12-17 00:40 |
|
|
redtek
金牌会员
     
积分 2902
发帖 1147
注册 2006-9-21
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
IE浏览器缓存里面有正被系统打开的文件,所以删不掉~:)
There are files in the IE browser cache that are being opened by the system, so they can't be deleted~ :)
|

Redtek,一个永远在网上流浪的人……
_.,-*~'`^`'~*-,.__.,-*~'`^`'~*-,._,_.,-*~'`^`'~*-,._,_.,-*~'`^`'~*-,._ |
|
2006-12-17 00:49 |
|
|
gene771771
初级用户
 
积分 105
发帖 77
注册 2006-11-9 来自 重庆
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
可以先用Tskill或者Taskkill 结束 Iexplore,但是我试过了,还是删除不了。。。
You can first use Tskill or Taskkill to end Iexplore, but I tried it and still can't delete it...
|
|
2006-12-17 00:58 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
rd /s /q
|

C:\>BLOG http://initiative.yo2.cn/
C:\>hh.exe ntcmds.chm::/ntcmds.htm
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |
|
2006-12-17 01:07 |
|
|
HUNRYBECKY
银牌会员
    
积分 1179
发帖 442
注册 2006-9-9
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
RD 命令也无法完整删除,总有些遗留的东西,在纯DOS下应该可以.
The RD command cannot completely delete it, there are always some remaining things, it should be possible under pure DOS.
|
|
2007-2-19 23:49 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
index.dat 无法删除,其他的都可以
The index.dat cannot be deleted, while others can be.
|

C:\>BLOG http://initiative.yo2.cn/
C:\>hh.exe ntcmds.chm::/ntcmds.htm
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>" |
|
2007-2-19 23:59 |
|
|
HUNRYBECKY
银牌会员
    
积分 1179
发帖 442
注册 2006-9-9
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
恩,是的,我这边如果不结束EXPLORER和杀毒软件,好像还有及格HTML文件也清不掉,
Well, yes, if I don't end EXPLORER and the antivirus software here, it seems that even the qualified HTML files can't be cleared.
|
|
2007-2-20 00:05 |
|
|
slore
铂金会员
      
积分 5212
发帖 2478
注册 2007-2-8
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
除了index.dat
del /s /q /f "D:\Temporary Internet Files\Content.ie5\"
In addition to index.dat
del /s /q /f "D:\Temporary Internet Files\Content.ie5\"
|
|
2007-2-20 00:53 |
|
|
HUNRYBECKY
银牌会员
    
积分 1179
发帖 442
注册 2006-9-9
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
Originally posted by slore at 2007-2-20 00:53:
除了index.dat
del /s /q /f "D:\Temporary Internet Files\Content.ie5\"
你只指定Temporary Internet Files时在DEL 中的/S已经包含SUB子目录了,所以是可以清掉的,只是个别文件由于正在使用中,所以无法清掉,这个Content.ie5很讨厌,里面浏览网叶是的垃圾文件和病毒等都放里面了.
Originally posted by slore at 2007-2-20 00:53:
Except index.dat
del /s /q /f "D:\Temporary Internet Files\Content.ie5\"
You only specified Temporary Internet Files, and /S in DEL already includes SUB directories, so it can be cleared. Just some files cannot be cleared because they are in use. This Content.ie5 is very annoying, and it contains garbage files and viruses from browsing the web.
|
|
2007-2-20 02:52 |
|
|
slore
铂金会员
      
积分 5212
发帖 2478
注册 2007-2-8
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
Temporary Internet Files下就没文件……你可以dir看看……
但是dir /ad就可以看到content.ie5目录。
本身在那个目录里的文件可以说是一种快捷方式,但是和lnk文件又有区别……
里面的cookie指向的是cookies文件夹中的文件,其他的文件指向content.ie5里的文件。
There are no files under Temporary Internet Files... You can do a dir to see... But with dir /ad you can see the content.ie5 directory.
The files in that directory themselves can be said to be a kind of shortcut, but different from lnk files...
The cookies inside point to the files in the cookies folder, and other files point to the files in content.ie5.
|
|
2007-2-20 03:38 |
|
|
loneself
新手上路

积分 2
发帖 1
注册 2007-6-16
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
问题还没有解决.等待高人!
The problem hasn't been solved yet. Waiting for an expert!
|
|
2007-6-16 01:16 |
|
|
pooloo
初级用户
 
积分 62
发帖 33
注册 2007-6-16
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
这一句一定行:
for /f "delims=" %%i in ('dir "%userprofile%\Local Settings\Temporary Internet Files\*.*" /s/b') do del /f/q "%%i"
Last edited by pooloo on 2007-6-16 at 09:14 AM ]
This line must work:
for /f "delims=" %%i in ('dir "%userprofile%\Local Settings\Temporary Internet Files\*.*" /s/b') do del /f/q "%%i"
Last edited by pooloo on 2007-6-16 at 09:14 AM ]
|
|
2007-6-16 08:58 |
|
|
joshualaw
初级用户
 
积分 132
发帖 62
注册 2007-6-5
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
Originally posted by pooloo at 2007-6-16 08:58 AM:
这一句一定行:
for /f "delims=" %%i in ('dir "%userprofile%\Local Settings\Temporary Internet Files\*.*" /s/b') do del /f/q "%%i"
Last edited by pooloo o ...
还是不行,等代高手指点
Originally posted by pooloo at 2007-6-16 08:58 AM:
This sentence must work:
for /f "delims=" %%i in ('dir "%userprofile%\Local Settings\Temporary Internet Files\*.*" /s/b') do del /f/q "%%i"
Last edited by pooloo o ...
Still not working, waiting for an expert to guide
|
|
2007-6-18 14:29 |
|
|
xg911335
初级用户
 
积分 134
发帖 50
注册 2006-3-28
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
我这也是。如果第一个删除的对象上“index.dat”。就会停止在这里了。后台的好象就不删除了
Me too. If the first object to be deleted has "index.dat" on it. It will stop here. The background one seems not to be deleted.
|
|
2007-6-18 14:39 |
|