Re: WIN32 - get the GUID of a Network Device

2010-04-27 Thread Tim Golden
On 26/04/2010 22:07, Tim Roberts wrote: Tim Golden wrote: On 26/04/2010 09:49, Richard Lamboj wrote: thanks for your response. No, i don't mean the MAC Address. I mean the GUID -> Sample: {1E2428C1-9F2C-48D7-AB53-3229DFB7E217} I want to change TcpAckFrequency and TcpDelTicks of a Network Inter

Re: WIN32 - get the GUID of a Network Device

2010-04-26 Thread Tim Roberts
Tim Golden wrote: > On 26/04/2010 09:49, Richard Lamboj wrote: >> thanks for your response. No, i don't mean the MAC Address. I mean >> the GUID -> >> Sample: {1E2428C1-9F2C-48D7-AB53-3229DFB7E217} >> >> I want to change TcpAckFrequency and TcpDelTicks of a Network >> Interface. I Try >> to change

Re: WIN32 - get the GUID of a Network Device

2010-04-26 Thread Tim Golden
On 26/04/2010 11:47, Tim Golden wrote: OK; I'm going to hope that Tim Roberts or someone equally knowledgeable can kick in here as devices really isn't my area. However this looks like it *might* be doing what you want: import wmi for nic in c.Win32_NetworkAdapter (MACAddress=i.MACAddress):

Re: WIN32 - get the GUID of a Network Device

2010-04-26 Thread Tim Golden
On 26/04/2010 09:49, Richard Lamboj wrote: thanks for your response. No, i don't mean the MAC Address. I mean the GUID -> Sample: {1E2428C1-9F2C-48D7-AB53-3229DFB7E217} I want to change TcpAckFrequency and TcpDelTicks of a Network Interface. I Try to change it over the Registry, but maybe there

Re: WIN32 - get the GUID of a Network Device

2010-04-26 Thread Richard Lamboj
Am Monday 26 April 2010 10:14:24 schrieb Tim Golden: > 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: > > > import wmi > > for nic in wmi.WMI ().Win32_NetworkAdapterConfigurat

Re: WIN32 - get the GUID of a Network Device

2010-04-26 Thread Tim Golden
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: import wmi for nic in wmi.WMI ().Win32_NetworkAdapterConfiguration (): print nic.caption, "=>", nic.MACAddress If you're not, th

WIN32 - get the GUID of a Network Device

2010-04-26 Thread Richard Lamboj
Hello, is there a way to get the GUID from a Network Device? Kind Regard, Richi -- http://mail.python.org/mailman/listinfo/python-list