Celeb Glow
general | March 15, 2026

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 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.

2 Answers

Yes:

netsh wlan show all

If 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy