List Available Wireless Networks from Command Line

20

10

I'm currently trying to do some physical debugging with one of our devices. It would be very useful to be able to use a command to output a list of available wireless networks to the command line or to a file (which I could then run a diff on later). Is there a way to do this in Windows 7?

NickAldwin

Posted 2012-04-12T19:47:02.443

Reputation: 1 305

Answers

29

Try NetShell.

The command netsh wlan show networks should work for you.

You can save output to a text file by using redirection like so:

netsh wlan show networks > somefile.txt

johnshen64

Posted 2012-04-12T19:47:02.443

Reputation: 4 399

7if you add mode=bssid to the end, it shows what channel each network is using too. – cantsay – 2013-11-06T19:19:08.083