stanlyn,
That's a good question...you should be able to walk that collection just like any other, but it doesn't seem to exist...hmmmm....though if you iterate through the properties_ collection and look at the Name property it is definately there...no answers yet, but looking into it
strComputer = "."
objWMIService = GetObject("winmgmts:\\" + strComputer + "\root\cimv2"

colItems = objWMIService.ExecQuery("Select * from Win32_NetworkAdapter",,48)
For Each objItem in colItems
? "Adapter Type: " + objItem.AdapterType
nType = objItem.AdapterTypeID
DO Case
Case nType = 0
strAdapterType = "Ethernet 802.3"
Case nType = 1
strAdapterType = "Token Ring 802.5"
Case nType = 2
strAdapterType = "Fiber Distributed Data Interface (FDDI)"
Case nType = 3
strAdapterType = "Wide Area Network (WAN)"
Case nType = 4
strAdapterType = "LocalTalk"
Case nType = 5
strAdapterType = "Ethernet using DIX header format"
Case nType = 6
strAdapterType = "ARCNET"
Case nType = 7
strAdapterType = "ARCNET (878.2)"
Case nType = 8
strAdapterType = "ATM"
Case nType = 9
strAdapterType = "Wireless"
Case nType = 10
strAdapterType = "Infrared Wireless"
Case nType = 11
strAdapterType = "Bpc"
Case nType = 12
strAdapterType = "CoWan"
Case nType = 13
strAdapterType = "1394"
ENDCASE
? "Adapter Type Id: " + strAdapterType
? "AutoSense: " + objItem.AutoSense
? "Description: " + objItem.Description
? "Device ID: " + objItem.DeviceID
? "Index: " + TRANSFORM(objItem.Index)
? "MAC Address: " + objItem.MACAddress
? "Manufacturer: " + objItem.Manufacturer
? "Maximum Number Controlled: " + TRANSFORM(objItem.MaxNumberControlled)
? "Maximum Speed: " + objItem.MaxSpeed
? "Name: " + objItem.Name
? "Net Connection ID: " + objItem.NetConnectionID
? "Net Connection Status: " + TRANSFORM(objItem.NetConnectionStatus)
*!* For Each strNetworkAddress in objItem.NetworkAddresses
*!* ? "NetworkAddress: " + strNetworkAddress
*!* ENDFOR
? "Permanent Address: " + objItem.PermanentAddress
? "PNP Device ID: " + objItem.PNPDeviceID
? "Product Name: " + objItem.ProductName
? "Service Name: " + objItem.ServiceName
? "Speed: " + objItem.Speed
endfor
Slighthaze =
NULL
[ul][li]FAQ184-2483
An excellent guide to getting a fast and accurate response to your questions in this forum.[/li][/ul]