Hello,
I'm writing an HTA using WMI for inventory purposes. I'm having a problem with getting the name of the Network Adapter. Here is the relevant code.
What that returns is "Symantec Teefer2 Miniport" which is obviously not the NIC. We are using Symantec Endpoint but I don't understand why that is being returned instead of the correct information. Any help would be wonderful
Thanks.
I'm writing an HTA using WMI for inventory purposes. I'm having a problem with getting the name of the Network Adapter. Here is the relevant code.
Code:
colItems = objWMIService.ExecQuery("Select * from Win32_NetworkAdapter");
e = new Enumerator(colItems);
for(; ! e.atEnd(); e.moveNext())
{
document.form1.net_nic.value=e.item().Manufacturer + " " + e.item().Name;
}
What that returns is "Symantec Teefer2 Miniport" which is obviously not the NIC. We are using Symantec Endpoint but I don't understand why that is being returned instead of the correct information. Any help would be wonderful
Thanks.