Windows 7 WiFi Command Cheatsheet


Author Marc Wickenden

Date 7 August 2014

Useful Windows command lines to do with wireless.

To display all wireless interfaces:

netsh wlan show interfaces

To show the wireless drivers installed run this command. This is particularly interesting as exploits in drivers do exist and most admins do not pay as close attention to driver versions as other types of software:

netsh wlan show drivers

To list available wireless networks (similar to Linux’s iwlist scan option)

netsh wlan show networks

To view profiles of networks saved on this machine:

netsh wlan show profiles

To make Windows connect to the specified profile (usually named after the SSID of the network):

netsh wlan connect name="ProfileName"

To export the profile details to an XML file (which includes an encrypted version of the PSK if applicable):

netsh wlan export profile name="ProfileName"

Now crucially, here are the commands to turn the Windows 7 (or Server 2008 R2) into an Access Point sharing its existing wireless connection out to others:

netsh wlan set hostednetwork mode=allow ssid=SomeSSID key=passphrase

The hosted network is now created but it is not yet started. To start it, issue the command:

netsh wlan start hostednetwork

Your Windows box is now advertising a network “SomeSSID” (in this case) which other machines can connect to. No notification is given on the Windows box that this has happened and no further notification happens when someone connects.

Share:

About The Author

Marc Wickenden

Technical Director at 4ARMED, you can blame him for our awesome technical skills and business-led solutions. You can tweet him at @marcwickenden.