home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2007 April
/
PCpro_2007_04.ISO
/
files
/
dsl
/
NVinst.exe
/
Scripts
/
Scripter
/
ClearCachedResources.nvs
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-02-10
|
335 b
|
20 lines
{
This script clears all cached resources lists
}
var hst:TNVHost;
begin
hst:=TNVHost.create;
hst.nextid:=0;
repeat
hst.GetHost(hst.nextid,0);
if(hst.id<>0)then
begin
hst.SetMetaVar('!ftpcache','');
hst.SetMetaVar('!nbcache','');
hst.SetMetaVar('!httitle','');
end;
until hst.nextid=0;
hst.Free;
end.