A simple way of creating an exclude list could be to create an inifile (exclude.ini) with a content like this:

[Exclude]
IPAQ02925=X
NEXTPC=X
etc.........


And then use this modified version of Lonkero's script:

code:
$exclude = Chr(10) + ReadProfileString("Exclude.ini", "Exclude", "") ; Read all key-names separated by CHR(10)
$file = "your_file"
$ = open(1,$file)
$line = readline(1)
while @error = 0
$temp = split($line,",")
$name = substr($temp[0],1,len($temp[0])-1)
If InStr($exclude, Chr(10) + $name + Chr(10)) = 0
$date = $temp[5]
;do time compare here
;and with result do something.
EndIf
$line = readline(1)
loop

Erik