Is there an iwlist equivalent for Windows (XP or later)?

2

2

I'd like to have a quick check on all the WLANs in my reach.

On Linux I'd use iwlist from CLI to list available WLANs, but is there an equivalent tool on Windows (I need it on XP and up).

In particular, I need a program that gives me a similar output to:

iwlist wlan0 scan

But on Windows! And I need it on Windows XP, I know there's a netsh command for Windows Vista/7 (netsh show wlan I believe), but as I said, I need that to work on Windows XP.

polemon

Posted 2011-03-01T08:56:18.213

Reputation: 2 531

Answers

1

Yes:

netsh wlan show all

If you do in Python:

ipconfig = subprocess.Popen(['netsh', 'wlan', 'show', 'all'],stdout=subprocess.PIPE)

user237634

Posted 2011-03-01T08:56:18.213

Reputation: 11

Could you elaborate a bit? I don't need a Python interface. – polemon – 2013-07-16T19:42:42.620

0

If it does not need to be command line, netstumbler is a great utility for wlans.

MaQleod

Posted 2011-03-01T08:56:18.213

Reputation: 12 560

What I meant was a built-in command if possible, and yes, it would be preferably from the shell. – polemon – 2011-04-10T05:17:18.173