Click here to Skip to main content
Licence 
First Posted 22 Jun 2007
Views 193,625
Downloads 3,173
Bookmarked 74 times

A Vista Wireless Network Scanner

By | 26 Jun 2007 | Article
A NetStumbler (sort of) for Vista

Screenshot - WifiScanner1.gif

Introduction

I recently got a new notebook and was routinely transferring all of my old, favourite utilities to it when I found that NetStumbler would not work with Vista. I saw some references to a poor-man's version with the following command line:

netsh wlan show networks mode=bssid

I decided to put it in a window, so here is my effort. For Microsoft documentation on netsh, see Windows Netsh.

The code

A timer on the Form calls the Scan() function every two seconds. The Scan() function first uses the Process() class to execute the netsh command with the command line parameters:

Process proc = new Process();
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.FileName = "netsh";
proc.StartInfo.Arguments = "wlan show networks mode=bssid";
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.Start();
output = proc.StandardOutput.ReadToEnd();
proc.WaitForExit();

The output is then parsed line-by-line to build an array of currently active networks. This is presented in a listView using the MAC Address as the item text with sub-items for the rest of the information. Discovered networks that are not already in the listView are found using:

ListViewItem SearchItem = new ListViewItem();
SearchItem = listView1.FindItemWithText(Networks[i, 0]);
if (SearchItem == null)
{
    // New discovery - add it to the list

Any networks already in the listView are updated. The signal level icon is generated by bitmaps on the listView:

int SignalInt = Convert.ToInt32(Networks[i, 3].TrimEnd(' ').TrimEnd('%'));
if (SignalInt > 50) listView1.Items[listView1.Items.Count-1].ImageIndex = 0;
else . . .

The coloured icons represent the signal levels as:

Green Dot Greater than 50% Signal Level

Yellow Dot 41% to 50% Signal Level

Orange Dot 31% to 40% Signal Level

Red Dot 21% to 30% Signal Level

Dark Red Dot 1% to 20% Signal Level

Grey Dot No Signal

Points of interest

One annoyance with the listView control was flicker. Every Update() or Refresh() caused the whole list to be cleared and re-written. I used a tip from Don Koster and added his listViewNF class. Using this listViewNF class stopped the flicker by redrawing only the changed areas.

class ListViewNF : System.Windows.Forms.ListView
{
    public ListViewNF()
    {
        //Activate double buffering
        this.SetStyle(ControlStyles.OptimizedDoubleBuffer | 
            ControlStyles.AllPaintingInWmPaint, true);

        //Enable the OnNotifyMessage event so we get a chance to filter out
        // Windows messages before they get to the Form's WndProc
        this.SetStyle(ControlStyles.EnableNotifyMessage, true);
    }

    protected override void OnNotifyMessage(Message m)
    {
        //Filter out the WM_ERASEBKGND message
        if (m.Msg != 0x14)
        {
            base.OnNotifyMessage(m);
        }
    }

Known issues

The netsh command can sometimes be slow at updating the real network state. If a network is connected, it seems that the signal level displayed by netsh is not updated. Being connected also seems to alter the signal level of the connected network and other networks. When a connected network is turned off, it can take more than a minute for netsh -- or possibly this is a driver issue -- to remove the network from the output. Turning the wireless off and back on seems to force a new signal level. Also, sometimes the netsh command seems to change signal levels at every update. Once it gets in this mode, it will update the signal level for every command when operating on main power, but if it's operating on battery power it doesn't! The normal signal update interval seems to be one minute. I tested this using a Dell 640m notebook with an Intel 3945ABG wireless adapter.

History

  • June 23, 2007: New article.
  • June 24, 2007: Whoops! Bitmaps were not included in the demo project. This is fixed now.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Charles Putney



Ireland Ireland

Member

My first experiences with computing was with a Bendix G15 drum computer at Carnegie Mellon. More followed with CDC G20, IBM 360, Univac 1108, Apple II, and 386XXX. I have done microprocessor programming and design for 6502, Z80, and 8051. I have moved to C# now and am still struggling to understand this. My career has been in engineering starting with Texas Instruments and continuing with Becton Dickinson, Dataproducts, Hitachi Printing Solutions and now retired from Ricoh Printing Systems Europe.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralChange netsh winXP by netsh Windows 7 o vista PinmemberMember 76683221:22 9 Apr '11  
GeneralRe: Change netsh winXP by netsh Windows 7 o vista PinmemberCharles Putney10:28 9 Apr '11  
GeneralUrgence :WifiScanner for windows XP Pinmembernoureddine3:34 29 Mar '11  
GeneralRe: Urgence :WifiScanner for windows XP PinmemberCharles Putney5:22 29 Mar '11  
GeneralRe: Urgence :WifiScanner for windows XP Pinmembernoureddine7:05 31 Mar '11  
GeneralMy vote of 5 Pinmemberradiomajak21:58 11 Jul '10  
GeneralNetsh equivalente para Windows XP PinmemberManolinRamirez18:25 30 Mar '10  
GeneralRe: Netsh equivalente para Windows XP PinmemberCharles Putney19:53 30 Mar '10  
GeneralA question about the signal Pinmemberzky85052122:51 5 May '09  
GeneralRe: A question about the signal PinmemberCharles Putney0:04 6 May '09  
GeneralRe: A question about the signal Pinmemberzky85052117:29 6 May '09  
GeneralRe: A question about the signal Pinmembernotaclue1211:05 9 Jul '09  
GeneralRe: A question about the signal PinmemberCharles Putney0:20 15 Oct '10  
QuestionPossibility to Associate? Pinmembersud_net4:03 27 Aug '08  
AnswerRe: Possibility to Associate? PinmemberCharles Putney21:01 3 Sep '08  
QuestionWiFi in Java Pinmembermulllllen22:50 17 Aug '08  
AnswerRe: WiFi in Java PinmemberCharles Putney6:11 20 Aug '08  
GeneralWifi in C++ or C# PinmemberTenketsu22:40 17 Jul '08  
GeneralRe: Wifi in C++ or C# PinmemberCharles Putney7:00 19 Jul '08  
GeneralFeature Request: Averages Pinmemberdubbele onzin19:03 13 Nov '07  
GeneralHi Mr. Putney Pinmemberxxxkrogoth10:33 1 Sep '07  
GeneralRe: Hi Mr. Putney PinmemberCharles Putney2:23 6 Sep '07  
GeneralHi Mr. Putney PinmemberLars Westergren22:43 26 Mar '08  
Generalget this function under windows xp~~ Pinmembersteven_xiangmin20:55 27 Aug '07  
HI Mr. Charles, if i want use your method to scan WLAN in WINDOWS XP, what should i do?
 
Steven
GeneralRe: get this function under windows xp~~ PinmemberCharles Putney2:16 6 Sep '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 26 Jun 2007
Article Copyright 2007 by Charles Putney
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid