Programmatically determing bandwith

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H

is it possible to detect the bandwith of all network adapters (NICs only), that are installed on a winxp system programmatically (any language, .net or C/C++)?
 
Gordon Knote said:
is it possible to detect the bandwith of all network adapters (NICs only),
that are installed on a winxp system programmatically (any language, .net or
C/C++)?

GetIfTable to retrieve interface table and then the dwSpeed inside the
MIB_IFROW structure. Same thing is accessible through the WMI as well.

-Kirk
 
Back
Top