Is there an iwlist equivalent for Windows (XP or later)?
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 scanBut 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.
2 Answers
Yes:
netsh wlan show allIf you do in Python:
ipconfig = subprocess.Popen(['netsh', 'wlan', 'show', 'all'],stdout=subprocess.PIPE) 1 If it does not need to be command line, netstumbler is a great utility for wlans.
1