I have been trying to convert the following to LV but am getting
stuck...

System.Management.ManagementClass mc =
new
System.Management.ManagementClass("Win32_NetworkAdapterConfiguration");

ArrayList list = new ArrayList();
foreach ( System.Management.ManagementObject mo in mc.GetInstances() )
{
if ( ((bool)mo["IPEnabled"]) == true )
.....>etc.
}

now - the examples use string based stuff, ManagementClass requires a
"path"....

Any ideas?

Dav.e

Reply via email to