How to add a new Wi-Fi network on a laptop: a step-by-step guide

In today's world, wireless connections have become the standard for internet access, and being able to quickly set one up on a laptop is a basic skill for any user. However, despite automated processes, situations often arise where a standard connection is impossible or requires manual adjustment of security settings. Understanding the operating principles of network adapters and knowledge of connection algorithms protected or hidden access points will allow you to avoid many problems with access to the global network.

There are many reasons why automatic network detection may fail or require human intervention: from a simple driver glitch to connecting to a corporate network with complex authentication. In some cases, the system may not recognize the router's SSID due to issues with the frequency range or power saving settings. Therefore, it's important to know not only the click sequence but also which specific parameters influence connection success.

In this article, we'll detail the process of adding a new Wi-Fi network on laptops running various operating systems, with a particular focus on Windows 10 and 11, as they hold the lion's share of the market. We'll cover both standard methods using the graphical interface and more advanced command-line options, which can be useful when standard menus are unavailable or malfunctioning.

Preparing equipment and checking drivers

Before attempting to add a new network, ensure your wireless adapter is physically functional and software-ready. Users often forget that airplane mode may be activated or the Wi-Fi module may be disabled on the laptop or keyboard. Check for the corresponding indicator on the keyboard, usually marked with an antenna icon, and ensure the module's status LED is lit.

The next critical step is to check the driver status in Device Manager. If the driver is outdated or not working correctly, the list of available networks may be empty, even if the router is in close proximity. To check, press the key combination Win + X and select "Device Manager", then find the "Network adapters" section.

  • 📶 Make sure the adapter name includes the word Wireless, Wi-Fi, or 802.11.
  • ⚠️ The absence of a yellow exclamation mark indicates that the driver is working properly.
  • 🔄 If you encounter any errors, try updating the driver using the device's context menu.

It's also worth noting that some older laptop models may not support modern encryption standards or 5 GHz frequency bands. If your laptop is more than 10 years old, it may simply not recognize newer routers that operate exclusively in wireless mode. AC or AXIn this case, the only solution is to replace the internal module or use an external USB adapter.

Find and connect to visible networks in Windows

The most common scenario is connecting to a network broadcasting its SSID (name). In Windows 10 and 11, this process is extremely simplified and requires minimal user interaction. Simply click the globe or antenna icon in the lower-right corner of the screen, in the notification area, to see a list of available access points.

Once the panel opens, you'll see a list of networks sorted by signal strength. Select the desired network from the list and click "Connect." The system will prompt you to enter a security key, which is usually found on a sticker on the bottom of the router or in your ISP contract. Be careful when entering the password, as it's case-sensitive.

📊 What operating system do you use?
Windows 10
Windows 11
macOS
Linux

An important step is choosing your network type after connecting. Windows will prompt you to choose whether you want to make this computer visible to other devices on the network. For home networks, the "Private Network" option is typically selected, allowing you to use file and printer sharing features. However, if you're at a cafe or airport, always select "Public Network" for increased security.

⚠️ Warning: When connecting to open networks in public places, avoid entering bank card details and passwords for important accounts, as your traffic may be intercepted by attackers.

Manually adding a hidden Wi-Fi network

Sometimes network administrators hide the access point name (SSID) for security reasons, so it doesn't appear in the general list of available connections. In this case, you need to know the exact network name and encryption type to add it manually through system settings. This is a common practice in the corporate sector and organizations with increased data security requirements.

To add manually, go to the "Options" menu (can be accessed via Win + I), then select "Network & Internet" and find the "Wi-Fi" section. In Windows 10, you need to go to "Manage known networks" and click "Add a new network," while in Windows 11, this option is located directly in the Wi-Fi adapter properties list.

In the window that opens, you will need to enter the following data:

  • 📝 The exact network name (SSID), including case and special characters.
  • 🔒 Security type (usually WPA2-Personal or WPA3-Personal).
  • 🔑 Security key (Wi-Fi password).

After entering all the information, be sure to check the "Connect automatically" box if you want the laptop to automatically find this network in the future. You may also want to check the "Connect even if the network isn't broadcasting" option. Without this option, the laptop won't attempt to find the hidden network, saving battery life.

Setting up a connection via the command line

For advanced users or system administrators, it's possible to add a network using console commands. This method is especially useful when the graphical interface freezes or when you need to configure connections on multiple computers remotely. Using the utility netsh provides deeper control over connection parameters.

First, you need to create an XML file with the network profile, but it's easier to use the direct add command. Open the command prompt as administrator by entering cmd in the search and selecting the appropriate item. First, check the status of the wireless interface with the command netsh wlan show interfacesto find out its exact name (usually "Wireless Network").

netsh wlan add profile filename="C:\path\to\profile.xml" interface="Wi-Fi"

However, to quickly connect to a known network, you can use a simpler syntax if you already know the SSID. The command netsh wlan connect name="Network_Name" ssid="Network_Name" will attempt to connect to the profile if one is saved. If the profile isn't saved, you can create one by connecting once through the GUI and then exporting the settings.

Team Function Description Necessary rights
netsh wlan show profiles Displays a list of all saved networks. User
netsh wlan delete profile Deletes a specific network profile Administrator
netsh wlan export profile Saves network settings to an XML file. Administrator
netsh wlan connect Initiates a connection to the network User

Troubleshooting connection issues on macOS and Linux

Apple users encounter a slightly different interface, although the logic remains the same. To add a network on a MacBook, click the Wi-Fi icon in the menu bar in the upper-right corner. If the desired network isn't listed under "Other Networks," select "Other..." and enter the network name manually. macOS is renowned for its stability, but sometimes it may require resetting your iCloud Keychain keys.

In Linux-based operating systems such as Ubuntu or Mint, network management is often accomplished through the NetworkManager utility. In a graphical interface (GNOME or KDE), the process is similar to Windows: click the network icon, select "Connect to Hidden Network," and enter the parameters. However, distributions may differ in the menu layout.

For Linux users who prefer the terminal, a powerful tool is the utility nmcli (NetworkManager command line interface). It allows you to create, edit, and delete connections without leaving the command line. For example, creating a new connection looks like this:

nmcli con add type wifi con-name"MyHome" ifname wlan0 ssid"HomeNetwork"
⚠️ Note: In Linux distributions, the wireless interface name may differ from the standard wlan0 (for example, wlp2s0), so always check the exact name using the command ip link or ifconfig.
What to do if Linux doesn't see the Wi-Fi adapter?

The problem often stems from a lack of proprietary drivers. In Ubuntu, you can use the Additional Drivers utility, which will automatically find and install the necessary components for your wireless module. You may also need to disable Secure Boot in the BIOS, as some drivers are not digitally signed by Microsoft.

Diagnosing errors and troubleshooting

Even if you enter the password correctly, the connection may fail. The system may display messages like "Cannot connect to this network" or "No internet access." The first step is to forget the network: select the desired network from the list of known networks, click "Forget," and try connecting again using the password.

IP address conflicts or errors in the router's DHCP server are common causes of problems. In this case, resetting the network settings can help. In Windows, this can be done via the command line with the command netsh winsock reset And netsh int ip reset, after which a system restart is required. It's also worth checking whether a static IP address is set if your network uses dynamic IP distribution.

☑️ Connection diagnostics

Completed: 0 / 4

If your laptop sees the network but won't connect, there may be a frequency issue. Make sure your adapter supports the same frequency as your router (2.4 GHz or 5 GHz). Some older cards don't support 80 or 160 MHz channels, which is common in newer routers.

Frequently Asked Questions (FAQ)

How do I add a Wi-Fi network if it doesn't appear in the list?

If the network is hidden, use the "Add New Network" feature in the Wi-Fi settings and enter the name (SSID) manually. Make sure you're in a strong signal area.

Why won't my laptop connect to 5GHz Wi-Fi?

Your wireless adapter may not support the 802.11ac or ax standard, or the drivers may not have been installed correctly. Check the adapter's specifications in Device Manager.

Is it possible to connect a laptop to Wi-Fi without entering a password?

Only if the network is open (without a lock) or WPS technology is used (connection via a button on the router), although WPS is considered insecure and is often disabled by default.

How to delete a saved network from laptop memory?

In Windows, go to Settings -> Network & Internet -> Wi-Fi -> Manage known networks. Select the desired network and click "Forget."

Does antivirus software affect connections to new networks?

Yes, some antivirus protection features (such as network control) can block connections to new or public hotspots. Try temporarily disabling your firewall to test.