Tuesday 30 March 2021

The netsh command-line tool lets manage virtually anything about Wi-Fi connections, and in this guide, we'll show you how on Windows 10.

Although you can manage many aspects of wireless networks using the Settings app (and Control Panel), sometimes, you may still need to perform more advanced tasks. For instance, recover the wireless password for a particular profile, view detailed information about saved profiles, or create a report to troubleshoot issues, which are not common tasks available with other graphical tools.

Whatever the reason it might be, if you have to complete more advanced networking tasks, Windows 10 includes the netsh (network shell) command-line tool that you can use to view, troubleshoot, and configure virtually every network adapter on the device.

In this Windows 10 guide, we will walk you through the steps to manage wireless networks with the netsh command-line tool.

How to view Wi-Fi network profiles stored on Windows 10

To view the wireless network profiles, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to view the wireless network profiles saved on your PC and press Enter:

    netsh wlan show profiles

  4. (Optional) Type the following command to view the saved profiles for a specific interface and press Enter:

    netsh wlan show profiles interface="WLAN-INTERFACE-NAME"

    In the command, replace the WLAN-INTERFACE-NAME for the actual name of the interface. You can use the netsh interface show interface command to find out the exact name.

    For example, this command shows the profiles saved for the "Wi-Fi" interface:

    netsh wlan show profiles interface="wi-fi"

Once you complete the steps, the command will output the profiles from all the wireless networks you connected in the past on every adapter installed on the computer.

How to view Wi-Fi network driver info on Windows 10

To view the wireless adapter driver information, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to view the wireless network profiles saved on your PC and press Enter:

    netsh wlan show drivers

  4. (Optional) Type the following command to view the adapter capabilities and press Enter:

    netsh wlan show wirelesscapabilities

After you complete the steps, the command will provide relevant information about the driver, including vendor, version, radio type (for example, 802.11ax, 802.11a, 802.11n, etc.) and wireless authentication support, and more.

If you use the command to view the capabilities, you will see a list of all the wireless features available and those supported for the adapter.

How to view Wi-Fi network adapter settings on Windows 10

To check the wireless adapter settings, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to view wireless settings and press Enter:

    netsh wlan show interfaces

  4. (Optional) Type the following command to view the settings for a specific interface and press Enter:

    netsh wlan show interface name="WLAN-INTERFACE-NAME"

    In the command, replace the WLAN-INTERFACE-NAME for the actual name of the interface. You can use the netsh interface show interface command to find out the exact name.

    For example, this command shows the profiles saved for the "Wi-Fi" interface:

    netsh wlan show interface name="wi-fi"

Once you complete the steps, the netsh tool will display the current wireless settings for one or all the adapters, including name, description, physical address, SSID, radio type (for example, 802.11ac), security authentication method, and the current receive and transmit rates, and signal strength.

How to view Wi-Fi network security key on Windows 10

To find out the wireless security key (also known as the Wi-Fi password), use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to view wireless password and press Enter:

    netsh wlan show profile name="WLAN-PROFILE-NAME" key=clear

    In the command, replace the WLAN-PROFILE-NAME with the name of the profile you want to see its security key.

    For example, this command shows the password for the tsunami network:

    netsh wlan show profile name="tsunami" key=clear

After you complete the steps, you will know the network security key for the profile you specified.

Although you can view the current network password through the wireless adapter properties in Control Panel, you can use this command to recover any network security key of any profile stored on the device.

How to stop Wi-Fi network automatic connection on Windows 10

Sometimes, you may have a device configured to connect to different wireless networks automatically, but then, you realize that it always connects to the access point even when it offers poor connectivity or the network is out of range. For those cases, you can run a command to stop connecting to known networks automatically.

To prevent a device from connecting to a Wi-Fi network automatically, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to disable auto-connect and press Enter:

    netsh wlan set profileparameter name="WLAN-PROFILE-NAME" connectionmode=manual

    In the command, replace WLAN-PROFILE-NAME with the name of the wireless profile.

    For example, this command disables automatic connections for the tsunami network:

    netsh wlan set profileparameter name="tsunami" connectionmode=manual

  4. (Optional) Type the following command to change the network priority and press Enter:

    netsh wlan set profileparameter name="WLAN-PROFILE-NAME" connectionmode=auto

    In the command, replace WLAN-PROFILE-NAME with the wireless profile name you are trying to change its priority.

    For example, this command makes the tsunami profile a priority:

    netsh wlan set profileparameter name="tsunami" connectionmode=auto

    Quick note: Windows 10 will always make a priority those networks you choose to connect automatically. If you want to move up a network in the list of precedence, you can use the above command.

Once you complete the steps, Windows 10 will no longer try to connect to wireless networks automatically.

How to delete Wi-Fi network profile on Windows 10

When you no longer need to connect to a particular wireless network, the access point is no longer available, or you need to reset the network profile settings, you can use the netsh command-line tool to delete any profile stored on your computer.

To delete a Wi-Fi profile on Windows 10, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to delete a network profile and press Enter:

    netsh wlan delete profile name="WLAN-PROFILE-NAME"

    In the command, replace WLAN-PROFILE-NAME with the name of the wireless profile.

    For example, this command deletes the tsunami profile:

    netsh wlan delete profile name="tsunami"

After you complete the steps, the wireless profiled will be deleted from the device. If you need to reconnect, you will need to go through the connection process again, and you will have to provide the network password as necessary.

How to export and import Wi-Fi network profiles on Windows 10

There was an option in Control Panel in previous versions of Windows to export and import wireless network profiles. However, the feature was then removed on Windows 8.1 and Windows 10 in favor of the new feature to sync these settings using a Microsoft account. But it is still possible to export and import the Wi-Fi settings using the netsh command-line tool.

Export wireless settings

To export the wireless settings, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to export the wireless profiles stored on the device and press Enter:

    netsh wlan export profile key=clear folder="FOLDER-PATH"

    In the command, replace FOLDER-PATH with the path to the export destination folder.

    For example, this command export the profiles to the "wireless-backup" folder:

    netsh wlan export profile key=clear folder="C:\Users\username\Documents\wireless-backup"

  4. (Optional) Type the following command to export a specific profile and press Enter:

    netsh wlan export profile name="WLAN-PROFILE-NAME" key=clear folder="FOLDER-PATH"

    In the command, replace the WLAN-PROFILE-NAME with the profile name you want to export and the FOLDER-PATH with the folder location to export the information.

    For example, this command exports the only tsunami profile to the "wireless-backup" folder:

    netsh wlan export profile name="tsunami" key=clear folder="C:\Users\username\Documents\wireless-backup"

Once you complete the steps, all the profiles will be exported to the location you specified. The output will also show the name and path for each XML file backup.

The export command will create an XML file for each wireless network profile stored on the device. Also, we are using the key=clear option, which will request to store the network security key for each network in the XML file. As a result, make sure to keep these records in a secure place, as they can easily be viewed or edited using any text editor.

Import wireless settings

To import the wireless settings on Windows 10 with command lines, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to import the wireless profiles and press Enter:

    netsh wlan add profile filename="FOLDER-PATH\WLAN-EXPORTED-FILE"

    In the command, replace FOLDER-PATH\WLAN-EXPORTED-FILE with the path and file name for the exported file.

    For example, this command imports a specific profile stored in the "wireless-backup" folder:

    netsh wlan add profile filename="C:\Users\username\Documents\wireless-backup\Wi-Fi-tsunami.xml"

    Quick tip: If you have multiple profiles, then repeat the steps and make sure to update the file path and filename of the exported profile.

  4. (Optional) Type the following command to import a profile to a particular wireless interface and current user and press Enter:

    netsh wlan add profile filename="FOLDER-PATH\WLAN-EXPORTED-FILE" Interface="WLAN-INTERFACE-NAME" user=current

    In the command, make sure to change FOLDER-PATH\WLAN-EXPORTED-FILE for the exported file's path and name containing the profile information and WLAN-INTERFACE-NAME with the name of the interface you want to import the settings.

    For example, this command imports the settings to the Wi-Fi interface:

    netsh wlan add profile filename="C:\Users\username\Documents\wireless-backup\Wi-Fi-tsunami.xml" Interface="Wi-Fi" user=current

After you complete the steps, the profile will be imported, allowing the device to connect to the wireless network without additional configuration.

How to create Wi-Fi network adapter report on Windows 10

If you need to troubleshoot the wireless connectivity to an access point, netsh also includes a command to create a detailed report with many important details.

To create a wireless report, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to create a wireless adapter report and press Enter:

    netsh wlan show wlanreport

  4. Type the following command to open the report and press Enter:

    C:\ProgramData\Microsoft\Windows\WlanReport\wlan-report-latest.html

Once you complete the steps, the report will open with the default web browser.

The wlan reports contain a graph with details of the connectivity status, including information, such as when the connection started, when it got disconnected, errors, and more. The report also summarizes the network adapters' information configured on your system, success and failed session, disconnect reasons, and more. It is a very detailed report that can help you ping point many Wi-Fi connectivity issues.

While you can manage many wireless settings through the Settings app, the netsh command-line tool gives you more advanced tools to view, configure, and troubleshoot Wi-Fi and Ethernet connections.

We only focus on the most common commands, but you can always use the netsh wlan command to view all the available options.

More Windows 10 resources

For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:



0 comments:

Post a Comment

ShortNewsWeb

Blog Archive

Categories

'The Woks of Life' Reminded Me to Cook With All the Flavors I Love (1) 13 of the Best Spooky Episodes From (Mostly) Un-Spooky Shows (1) 1Password Now Generates QR Codes to Share Wifi Passwords (1) 2024 (15) 30 Movies and TV Shows That Are Basically 'Competence Porn' (1) 30 of the Most Obscenely Patriotic Movies Ever (1) 31 Spooky Movies to Watch Throughout October (1) 40 Netflix Original Series You Should Watch (1) Active Directory (1) Adobe's AI Video Generator Might Be as Good as OpenAI's (1) AIX (1) and Max Bundle Isn't a Terrible Deal (1) Apache (2) Apple Intelligence Is Running Late (1) Apple Intelligence's Instructions Reveal How Apple Is Directing Its New AI (1) August 18 (1) August 4 (1) August 5 (1) Backup & Restore (2) best practices (1) bleepingcomputer (45) Blink Security Cameras Are up to 68% Off Ahead of Prime Day (1) CentOS (1) Configure PowerPath on Solaris (1) Documents (2) Don't Rely on a 'Monte Carlo' Retirement Analysis (1) Eight Cleaning Products TikTok Absolutely Loves (1) Eight of the Best Methods for Studying so You Actually Retain the Information (1) Eight Unexpected Ways a Restaurant Can Mislead You (1) Elevate Your Boring Store-Bought Pretzels With This Simple Seasoning Technique (1) Everything Announced at Apple's iPhone 16 Event (1) file system (6) Find (1) Five Red Flags to Look for in Any Restaurant (1) Flappy Bird's Creator Has Nothing to Do With Its 'Remake' (1) Four Reasons to Walk Out of a Job Interview (1) Four Signs Thieves Are Casing Your House (1) gaming (1) Hackers Now Have Access to 10 Billion Stolen Passwords (1) How I Finally Organized My Closet With a Digital Inventory System (1) How to Cancel Your Amazon Prime Membership After Prime Day Is Over (1) How to Choose the Best Weightlifting Straps for Your Workout (1) How to Keep Squirrels Off Your Bird Feeders (1) How to Set Up Your Bedroom Like a Hotel Room (and Why You Should) (1) How to Take a Screenshot on a Mac (1) How to Take Full Control of Your Notifications on a Chromebook (1) Hulu (1) If You Got a Package You Didn't Order (1) If You Hate Running (1) Important Questions (17) Install and Configure PowerPath (1) interview questions for linux (2) Is ‘Ultra-Processed’ Food Really That Bad for You? (1) Is Amazon Prime Really Worth It? (1) It Might Be a Scam (1) July 14 (1) July 21 (1) July 28 (1) July 7 (1) June 30 (1) LifeHacker (99) Linux (36) Meta Releases Largest Open-Source AI Model Yet (1) Monitoring (3) music (688) My Favorite 14TB Hard Drive Is 25% Off Right Now (1) My Favorite Amazon Deal of the Day: Apple AirPods Max (2) My Favorite Amazon Deal of the Day: Google Nest Mesh WiFi Router (1) My Favorite Amazon Deal of the Day: Google Pixel 8 (1) My Favorite Amazon Deal of the Day: SHOKZ OpenMove Bone Conduction Headphones (1) My Favorite Tools for Managing Cords and Cables (1) Nagios (2) Newtorking (1) NFS (1) OMG! Ubuntu! (688) Oracle Linux (1) oracleasm (3) osnews (22) Password less communication (1) Patching (2) Poaching Is the Secret to Perfect Corn on the Cob (1) powerpath (1) Prioritize Your To-Do List By Imagining Rocks in a Jar (1) Red Hat Exam (1) register (44) Rsync (1) Safari’s ‘Distraction Control’ Will Help You Banish (Some) Pop Ups (1) Samba (1) Scrcpy (1) September 1 (1) September 15 (1) September 2 (1) September 22 (1) September 23 (1) September 30 (1) September 8 (1) Seven Home 'Upgrades' That Aren’t Worth the Money (1) ssh (1) Swift Shift Is the Window Management Tool Apple Should Have Built (1) System hardening (1) Target’s Answer to Prime Day Starts July 7 (1) Tech (9533) Tech CENTRAL (15) Technical stories (100) technpina (6) The 30 Best Movies of the 2020s so Far (and Where to Watch Them) (1) The 30 Best Sports Movies You Can Stream Right Now (1) The Best Deals on Robot Vacuums for Amazon’s Early Prime Day Sale (2) The Best Deals on Ryobi Tools During Home Depot's Labor Day Sale (1) The Best Early Prime Day Sales on Power Tools (1) The Best Movies and TV Shows to Watch on Netflix This Month (1) The Best Places to Go When You Don't Want to Be Around Kids (1) The Best Strategies for Lowering Your Credit Card Interest Rate (1) The Best Ways to Store All Your Bags and Purses (1) The Latest watchOS Beta Is Breaking Apple Watches (1) The New Disney+ (1) The Two Best Times of Year to Look for a New Job (1) These Meatball Shots Are My Favorite Football Season Snack (1) These Milwaukee Tools Are up to 69% off Right Now (1) This Google Nest Pro Is 30% Off for Prime Day (1) This Peanut Butter Latte Isn’t As Weird As It Sounds (1) This Tech Brand Will Get the Biggest Discounts During Prime Day (1) Three Quick Ways to Shorten a Necklace (1) Today’s Wordle Hints (and Answer) for Monday (4) Today’s Wordle Hints (and Answer) for Sunday (11) Try 'Pile Cleaning' When Your Mess Is Overwhelming (1) Try 'Rucking' (1) Ubuntu News (345) Ubuntu! (1) Unix (1) Use This App to Sync Apple Reminders With Your iPhone Calendar (1) veritas (2) Videos (1) Was ChatGPT Really Starting Conversations With Users? (1) Watch Out for These Red Flags in a Realtor Contract (1) Wayfair Is Having a '72-Hour Closeout' Sale to Compete With Prime Day (1) We Now Know When Google Will Roll Out Android 15 (1) What Is the 'Die With Zero' Movement (and Is It Right for You)? (1) What Not to Do When Training for a Marathon (1) What's New on Prime Video and Freevee in September 2024 (1) Windows (5) You Can Easily Add Words to Your Mac's Dictionary (1) You Can Get 'World War Z' on Sale for $19 Right Now (1) You Can Get a Membership to BJ's for Practically Free Right Now (1) You Can Get Beats Studio Buds+ on Sale for $100 Right Now (1) You Can Get Microsoft Visio 2021 Pro on Sale for $20 Right Now (1) You Can Get This 12-Port USB-C Hub on Sale for $90 Right Now (1) You Can Get This Roomba E5 Robot Vacuum on Sale for $170 Right Now (1) You Can Hire Your Own Personal HR Department (1) You Can Set Different Scrolling Directions for Your Mac’s Mouse and Trackpad (1)

Recent Comments

Popular Posts

Translate

My Blog List

Popular

System Admin Share

Total Pageviews