On 26/04/2010 09:06, Richard Lamboj wrote:
is there a way to get the GUID from a Network Device?

Are you talking about the MAC address? If so, here's
one way:

<code>
import wmi

for nic in wmi.WMI ().Win32_NetworkAdapterConfiguration ():
  print nic.caption, "=>", nic.MACAddress

</code>

If you're not, then which GUID are you referring to?

TJG
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to