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:
Text File  |  2007-02-10  |  335 b   |  20 lines

  1. {
  2. This script clears all cached resources lists
  3. }
  4. var hst:TNVHost;
  5. begin
  6. hst:=TNVHost.create;
  7. hst.nextid:=0;
  8.  repeat
  9.  hst.GetHost(hst.nextid,0);
  10.  if(hst.id<>0)then
  11.   begin
  12.   hst.SetMetaVar('!ftpcache','');
  13.   hst.SetMetaVar('!nbcache','');
  14.   hst.SetMetaVar('!httitle','');
  15.   end;
  16.  until hst.nextid=0;
  17. hst.Free;
  18. end.
  19.  
  20.