HighTechTalks DotNet Forums  

List wireless network adapters without packet schedulers

Dotnet Framework (WMI) microsoft.public.dotnet.framework.wmi


Discuss List wireless network adapters without packet schedulers in the Dotnet Framework (WMI) forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Christoph Fischer
 
Posts: n/a

Default List wireless network adapters without packet schedulers - 05-15-2009 , 08:13 AM






Hi everyone,

I'm working on an application that is supposed to list the active
wireless network adapters _without_ including packet schedulers. This
is what we have so far ...

Dim searcher As New ManagementObjectSearcher( _
"\root\wmi", _
"Select * from MSNdis_80211_ServiceSetIdentifier Where
active=true")

CurrentWirelessSSID = ""
CurrentWirelessName = ""
Dim TheID As String = ""
Dim TheName As String = ""
For Each queryObj As ManagementObject in searcher.Get()
Dim i As Integer
Dim ThisName As String = ""
For i = 0 To queryObj("Ndis80211SsId")(0)
TheID = TheID & chr(queryObj("Ndis80211SsId")(i +
4))
Next
TheName = queryObj("InstanceName")
next

Is there an easy way to filter out packet schedulers from the objects
being returned here?

Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.