Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 15 down vote accepted
netsh wlan show network 

should work for you.

You can save it to a file by redirection such as:

netsh wlan show network > somefile.txt
share|improve this answer
That worked great, thanks! – NickAldwin Apr 12 '12 at 20:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.