duplicate entry for network adapter

O

OM

Hi,

I have a script to query network adapter information on remote machines.
One thing seems to be odd is that some machines will show two
identical network adapters on the output even there is only one card
installed.

script
Set colItems = objsWbeMServices.ExecQuery ("Select * from
Win32_Networkadapter
For Each objItem in colItems

Wscript.Echo "Network Card: " & objItem.caption

Wscript.Echo "MAC address: " & objItem.macaddress

next


output
Network Card: [00000000] 3Com EtherLink XL 10/100 PCI For Complete PC
Management
NIC (3C905C-TX)
MAC address: xx:xx:xx:xx:xx:xx
Network Card: [00000006] 3Com EtherLink XL 10/100 PCI For Complete PC
Management
NIC (3C905C-TX)
MAC address: xx:xx:xx:xx:xx:xx

Does anyone know why?

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top