I'm trying to collect wifi Bssid and Rssi information on Windows, and am looking for the most reliable way to do that across as many versions of Windows as possible. With Vista it's easy using Win32 calls with the Wireless LAN API. That API exists on XP SP2 (sometimes) and SP3, but as far as I can tell it doesn't support gathering Bssid information on those platforms.

Ideally, I'd like a way to get it on all versions of XP. (I'm guessing there's just no hope at all for Windows 95 / 98 / ME). Any programming language or commandline tool will do. Any pointers? Thanks.

link|improve this question
1  
I'm also interested in that question. Could you link to the APIs that you mentioned? – viraptor Oct 23 '09 at 19:37
feedback

2 Answers

Well, you can't get that information(from my understanding) from windows. I comes from the router itself. But Wireshark and nmap would be my guess.

link|improve this answer
feedback

That's not correct, Windows provides the possibility to get these information. The bad news: there is not ONE such way but different APIs and Interfaces which have to be used depending on the operating system.

But you do not have to re-invent the wheel, the libwlocate already contains the functions you are looking for: http://libwlocate.git.sourceforge.net/git/gitweb.cgi?p=libwlocate/libwlocate;a=tree;f=master;h=22427173ce6fa394bc6014d9f109f6ed12b9f25f;hb=HEAD

link|improve this answer
feedback

Your Answer

 
or
required, but never shown