7 Ways to Export WiFi Profile on Windows 10

Wireless networking, or WiFi, is one of the best and most important technological inventions in recent years. It allows smartphones, tablets, laptops, TVs, media streamers, and even vehicles to access a network connection and the internet without wires. The problem with a mobile network connection is every time you connect to a new network it will likely have different settings than the previous connection.

Things like the wireless SSID, whether it’s an ad-hoc connection, the encryption method, and the password will be different each time you connect to another WiFi network. It can be frustrating for example, visiting a family member, friend, or customer only to find they don’t know the information for their wireless network, or a computer has several wireless network profiles and they need to be transferred to another computer or backed up before a Windows reinstall.

Manage known networks

Thankfully it’s entirely possible to backup and restore the information stored in a wireless profile, including the password, encryption type, and network SSID. Windows can store dozens of different profiles so it’s useful to have a backup of them for future use. Here we show you 7 solutions to import and export the wireless profiles on your computer.

1. WirelessKeyView

Nirsoft’s WirelessKeyView is a small portable tool that is useful for quickly viewing the profile names and passwords of wireless connections. Another useful feature is the ability to import and export selected wireless profiles to a standard text file. Be aware that some antivirus software will flag this tool as malicious although these are false positives and the tool is safe to use.

Wirelesskeyview export

To export a profile, click on an individual network, drag the mouse, or use Ctrl+click to select multiple entries. Right click and choose “Export Selected Items” (Ctrl+E) then give the text file a name. To add wireless profiles, select “Import keys from export file” in the context menu (Ctrl+I) and locate the text file. All profiles in a text file will be added at once.

Also, the saved wireless profile passwords are stored in plain text so make sure the text files are kept safe or encrypted. A recently added feature to WirelessKeyView is the QR Code option (F2). Turn it on and you can scan the selected network’s code with your mobile device to automatically import the selected network.

Download WirelessKeyView


2. NetSetMan

We’ve talked about NetSetMan before for configuring and backing up IP address and DNS server profiles. It’s a feature rich program and another thing it can do is manage wireless internet profiles with the ability to import and export. NetSetMan is both installable and portable from the same setup executable file.

Netsetman export profile

After running NetSetMan, click the WiFi icon down the left or go to Program > WiFi Management, then press the Profiles button. The lower part of the window allows you to create, edit, delete, import, or export WiFi networks. Profile management is easy and to export simply highlight the profile from the list and click Export to save it to a location of your choice. Passwords can be saved as encrypted or in plain text.

Importing is also very simple as you only have to click the button and locate the XML file. The XML profiles created here are the same as those used by the Windows Netsh command so they are interchangeable.

Download NetSetMan


3. Network Profiles Utility

The author of the well known d7 repair utility also created this tool. Its intended purpose is backing up and restoring wireless network profiles and general network settings while performing repairs on a system. But it can obviously also be used to backup and transfer the profiles to other systems. The program is also a fully portable standalone executable of only 304KB.

Network profiles utility 1

On the first run, you need to configure the program. Uncheck “Restore Automatically and Exit” and also optionally “IP/DNS settings”, leave the profile location blank to save profiles to the current folder. Save & Close the config window then press Export in the main window to backup all the available profiles. They are saved by default in profile location\Wireless folder and the files are the same as the XML configuration files created by the Windows netsh command.

When you press Import, all saved wireless profiles in the folder will be added back in one go. To import a single profile, go into the Network Profiles folder and move those profiles you don’t want to import. The profiles are save with plain text wireless passwords so you need to keep them safe.

Download Network Profiles Utility


4. WiFi Network Backup Manager

WiFi Network Backup Manager is quite a simple tool that can import and export wireless profiles. Although it only comes as an MSI installer you can extract it with Universal Extractor to make a portable version.

Wifi network backup manager

The program will list the available WiFi profiles on the left with the corresponding XML configuration file data to be saved on the right. Simply click on a profile and press Save or use Save All to export all profiles to a single .WiFiBackup file. To import one or more profiles click Load and locate the .WiFiBackup file. It’s all pretty easy and simple to understand and operate. In this tool, the WiFi password remains encrypted in the exported backup file.

Download WiFi Network Backup Manager


5. WiFi Password Revealer

This tool is by Magical Jelly Bean, the developer behind the famous Windows product key revealer. It can export WiFi profile data, however, the drawback is WiFi profiles cannot be imported back into Windows through the program.

Wifi password revealer

After install, right click in a blank space or go to the File menu and select “Save As…”. All the listed WiFi profiles can be saved to an XLS, HTML, CSV, or TXT file. A useful option is the ability to generate a QR Code for the selected profile that can be automatically imported into a mobile phone or tablet once scanned.

Download WiFi Password Revealer


6. Export and Import Wireless Profiles Using Windows Command Line

Some wireless connection utilities are simply front ends for the built in Windows netsh tool which can perform several network related commands. Since Windows Vista, it’s also had the ability to configure wireless network settings such as importing and exporting WiFi profiles. Here we’ll show you the basic commands which will work for most users. They are available from Windows Vista to Windows 10.

Open a Command Prompt (Start > type cmd) and enter the following to see which WiFi profiles are present on the system.

Netsh wlan show profiles

Netsh wlan show profiles

Export Wireless Profile with Netsh

If you already know the name of the profiles you want to export or there is only a single profile on the system, the above command can be skipped. To export saved wireless profiles use the export command and save to a folder of your choice.

Netsh wlan export profile [“profile name”] [key=clear] folder=”%userprofile%\desktop”

Netsh export profile

The above will save all profiles to the desktop in separate XML configuration files with a visible password in plain text. The “key=clear” argument does this and is optional, otherwise, the saved password will be encrypted. It’s useful if you forgot the password but also not secure, so only use it if you really have to. The “Profile name” argument is also optional and only saves the wireless profile you specify.

Import Wireless Profile with Netsh

After you have the required wireless profiles exported it might be an idea to rename them. The default name could be quite long and is the wireless connection name and then the profile, e.g “Wireless Network Connection-Raymondcc.xml”. Run the following command replacing the path to the XML with the path to your own file.

Netsh wlan add profile [user=current] filename=”%userprofile%\desktop\WiFi-raymondcc.xml”

Netsh import profile

By default, the netsh command will import the profile to all users on the system. If you only want to have it visible to the current user include the user=current argument. In Windows 7 the added profile will show in the Manage Wireless Networks window. In Windows 10 it will be Settings > Network & Internet > WiFi > Manage known networks, or by using the netsh show command.

Windows known netrworks

Tip: It’s easy to create a batch script for importing your profile onto any Windows computer with a double click. Simply create a folder, copy the XML configuration file to it and then create a .BAT file with the netsh add command. Add the profile filename to the command without a path, for example:

Netsh wlan add profile filename=”WiFi-raymondcc.xml”

It’s also possible to do the same with the export command, just use folder=. as the path to create the XML profile in the same folder as the batch script.

Netsh wlan export profile folder=.

We have created two simple WiFi profile batch scripts you can use. One will export all wireless profiles to the current folder on double click while the other will import the selected profile. To import a profile, all you have to do is drag and drop an XML profile onto the batch file.


7. Export and Import WiFi Profiles using a USB Drive and Windows 7

Something which was taken out in Windows 8 and 10 but still remains in Windows 7 is the option to save a wireless profile to a USB device. Using this feature makes it quite easy to transfer wireless settings from one computer to another. A USB flash drive or hard drive is required.

Export a Wireless Profile to USB

1. Go to Control Panel > Network and Sharing Center > “Manage wireless networks” and double click on the profile you want to export.

2. Click “copy this network profile to a USB flash drive” near the bottom of the properties window.

copy network profile to usb

3. Insert a USB drive into your computer and click Next when the button becomes available. Wait a few seconds while the process is completed. Click Close.

Import a Wireless Profile from USB

1. Insert the USB drive into the computer you want to import the wireless profile to. If you have autoplay enabled on your computer a popup will offer to “Connect to a wireless network”. If not, open the USB device in Explorer and double click on SetupSNK.exe.

connect wifi autoplay

2. The wizard will ask if you want to add the saved profile to the wireless network. Click Yes and a success message will show. You can now go and use the wireless connection.

2 Comments - Write a Comment

  1. david manvell 4 years ago
  2. Martin 7 years ago

Leave a Reply

Your email address will not be published. Required fields are marked *

Note: Your comment is subject to approval. Read our Terms of Use. If you are seeking additional information on this article, please contact us directly.