CO, what version of kix are you using?

3.63 or 4.0?

if you are using 4.0, I just created a UDF that might be of some help to you.
http://kixtart.org/cgi-bin/ultimatebb.cgi?ubb=get_topic&f=2&t=002510

and example on how to use it.

code:

;this load's the UDF
call "dirplus.kix"


;this gets all .exe files in the $windir%\system32 tree
$dir = dirplus("%windir%\system32",".exe",1)

for each $file in $dir
? $file
next


Bryce