Well
 Code:
;for each $nic in Split(WMIQuery("ProductName","Win32_NetworkAdapter"),"|")
;if instr($nic,"miniport")=0 and instr($nic,"RAS")=0 and instr($nic,"Parallel")=0
;$NicCard = $nic
isn't complete - no Next or EndIf.

Put this in the data collection part:
 Code:
$aNICs = Split(WMIQuery("ProductName","Win32_NetworkAdapter"),"|")
Then, in the display / data write section, you use something like this:
 Code:
for each $nic In $aNICs
  ; ignore virtual and vpn adapters
  if instr($nic,"miniport")=0 and instr($nic,"RAS")=0 and instr($nic,"Parallel")=0
    'Found network adapter ' $nic ?
  EndIf
Next
This is untested, but should be pretty darn close.

Glenn

_________________________
Actually I am a Rocket Scientist! \:D