The easiest would be to just shell out and type and pipe to find.
Code:
break on
$A = 'C:\FileA.txt'
$B = 'C:\FileB.txt'

$ShellCMD = '%comspec% /c type "' + $A + '"| find /i "' + @WkSta + '"'

Shell $ShellCMD

If @Error = 1
'Computer ' + @WkSta + ' not found in ' + $A ?
EndIf

$ShellCMD = '%comspec% /c type "' + $B + '"| find /i "' + @WkSta + '"'

Shell $ShellCMD

If @Error = 0
'Computer ' + @WkSta + ' found in ' + $B ?
EndIf

_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.