thanks for all the help guys but still not working right
the following code is running fine extracts files to the correct path but is extracting them all and not just the files i need any ideas?


Dim $folder, $file, $files
$folder = 'C:\foldera\'
$files = '$isaname1','$isaname2','$isaname3','$isaname4','$isaname5'
For Each $file In $files
If NOT Exist($folder + $file)
Shell '%COMSPEC% /C C:\kix\WZUNZIP.exe -e C:\foldera\isafile.zip C:\foldera\"$file" C:\foldera\ '
Shell $folder + $file
EndIf
Next


thanks again