Greetings,
Sorry for the duel posting, however I'v got few WMI concepts to get Network Connection's ID Lists..

Code:
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * From Win32_NetworkAdapterConfiguration Where IPEnabled = 1")

For Each objItem In colItems
    Msgbox "Caption: " & objItem.Caption & vbNewLine & "Description: " & objItem.Description
Next
It's working but the output is something like:
Caption: [00000007] Realtek RTL8139/810x Family Fast Ethernet NIC
Description: Realtek RTL8139/810x Family Fast Ethernet NIC


It's not showing "Local Area Connection" Or "Idea Internet". Am I missing any Property?

Thanks
Regards,