hmm,
I did find it but think I did run into some bugs :
$a = Get-WmiObject -Namespace Root\WMI -Class MSNdis_CoLinkSpeed
$a |% {$_.psbase.Properties.Item('NdisCoLinkSpeed')}
PoSH> $a | select [a-z]* | ft -a
Active InstanceName
NdisCoLinkSpeed
------ ------------
---------------
True isatap.{191B6C96-3488-457E-8A2C-03B54221751C}
System.Management.Managemen...
True Teredo Tunneling Pseudo-Interface
System.Management.Managemen...
True Intel(R) PRO/1000 CT Network Connection
System.Management.Managemen...
True Intel(R) PRO/1000 CT Network Connection - Virtual Machine Network
Services Driver System.Management.Managemen...
True WAN Miniport (Network Monitor)
System.Management.Managemen...
True WAN Miniport (IP)
System.Management.Managemen...
True WAN Miniport (IPv6)
System.Management.Managemen...
True RAS Async Adapter
System.Management.Managemen...
PoSH> $a |% {$_.psbase.Properties.Item('NdisCoLinkSpeed')} | select {$_.value}
$_.value
--------
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
System.Management.ManagementBaseObject
PoSH> $a |% {$_.psbase.Properties.Item('NdisCoLinkSpeed')} |% {$_.value}
format-default : Exception retrieving members: "Not found "
PoSH>
so almost there, but still no speed
Greetings /\/\o\/\/
"/\\/\\o\\/\\/ [MVP]" wrote:
> damon, you need to look in the MSFT namespace
> there is a wmiclass for it there, have no time to search good example, but
> some googeling
> and ADSI edit or my PowerShell WMI browser :
> http://thepowershellguy.com/blogs/po...r/default.aspx
> can help you out
>
> if you can't find it, let me know I will look if can provide an example
> later in the weekend
> h.t.h.
>
> Greetings /\/\o\/\/
>
> "Damon" <Damon@discussions.microsoft.com> wrote in message
> news:58A6B894-87CC-4C93-9674-6C4E33D5338E@microsoft.com...
> > Hello,
> > I am trying to run a query to get the network card's speed on remote
> > computers.
> > I tried win32_networkadapter and a couple of others which have a speed
> > property but mine are blank.
> > Any idea why mine are blank? is there another way to retreive network
> > adapter speed?
> > Thanks
>
>