Connecting to a wireless network on a laptop with Windows 10 Usually it happens automatically - just select the network from the list and enter the password. But what if your Wi-Fi adapter Can't see the access point you need, or do you want to connect to a hidden network? In such cases, you need manual tuning, which allows you to enter network parameters manually, including SSID, security type and encryption key.
This article will help you figure out how to connect to Wi-Fi manually through Control Panel, Windows Settings or Command lineWe will cover all possible scenarios: from basic setup to solving common problems such as errors "Unable to connect to this network" or lack of available networks. We will pay special attention hidden networks, which do not broadcast their name (SSID) and require mandatory manual data entry.
If you are faced with a situation where the laptop "does not see" your Wi-FiEven if other devices connect without problems, don't rush to blame the router. In 60% of cases, the problem lies in the settings. network adapter or drivers. You can check this in a few minutes by following our instructions.
1. When is manual Wi-Fi connection required?
Automatic connection mode to Wi-Fi V Windows 10 It's convenient, but it doesn't always work perfectly. Manual connection may be necessary in the following cases:
- 🔍 Network hidden (does not broadcast)
SSID) - often used in offices or public places to increase security. - 🔄 Laptop doesn't see the network, although it is there - the problem may be in the router settings or adapter drivers.
- 🔐 Required to be specified non-standard security parameters, For example,
WPA2-Enterprisewith certificates (in universities or corporate networks). - 📡 You need to connect to the network with static IP, which is not issued by
DHCP. - 🔧 After resetting your router or updating Windows Automatic settings are lost.
Manual data entry is also useful if you are setting up guest access to a network with limited rights or testing a new access point that is not yet configured for automatic distribution SSID.
⚠️ Attention: If you are connecting to a corporate network withWPA2-Enterprise, check with the administrator for additional parameters: authentication server name (RADIUS), type of check (PEAP,TTLS) and the need to install certificates. Without this information, connection will be impossible.
2. Preparation: Checking the Wi-Fi adapter and drivers
Before you begin manual configuration, make sure that Wi-Fi adapter enabled and working correctly. To do this:
- Click
Win + Xand select device Manager. - Expand the tab
Network adapters. - Find the device with the names Wireless, Wi-Fi or 802.11 (For example,
Intel(R) Wi-Fi 6 AX200orQualcomm Atheros QCA9377).
If the light next to the adapter is on yellow exclamation mark, this indicates a problem with the drivers. In this case:
- 🔄 Update the driver via the context menu (
Update driver → Automatic search). - 💻 If the automatic update didn't help, download the driver from the laptop manufacturer's website (Lenovo, HP, Asus etc.) or chip Wi-Fi (Intel, Broadcom, Realtek).
- 🔌 Make sure that hardware Wi-Fi button on the laptop is turned on (on some models there is a physical switch or a key combination, for example,
Fn + F2).
If the adapter is in Device Manager is absent altogether, this may indicate:
- Disabling the adapter in
BIOS/UEFI(you need to go to the settings when booting the laptop and turn it onWireless LAN). - Hardware failure (for example, a disconnected antenna cable inside the laptop).
The adapter is enabled in Device Manager|
Drivers updated|
The hardware Wi-Fi button is active|
The network is visible on other devices (phone, tablet)-->
3. Manual connection via Windows Settings
The easiest way to add a network manually is through the standard menu Windows 10. Follow the instructions:
- Open
Start → Settings (⚙) → Network & Internet → Wi-Fi. - Click Managing known networks.
- Select Add a new network.
- Fill in the fields:
- Network name (SSID) — the exact name of the network (case sensitive!).
- Security type - usually
WPA2-Personal(for home routers). - Security key — Wi-Fi password.
Connect automatically and press Save.If the network hidden, after saving it will appear in the list of available networks with the status "Manually"To connect, simply click on it and enter the password (if it hasn't been saved previously).
For networks with static IP after connection:
- Go to
Settings → Network & Internet → Wi-Fi → Network name → Properties. - Scroll to IP settings and select
Manually. - Enter
IP address,Subnet mask,GatewayAndDNS servers(they must be provided by the network administrator).
⚠️ Attention: If you specify staticIP, make sure it doesn't conflict with other devices on the network. For example, if the router distributes addresses in the range192.168.1.100–192.168.1.200, selectIPoutside of this context (for example,192.168.1.99).
What to do if Windows 10 doesn't save the network?
If the manually added network disappears after restarting your laptop, try:
1. Remove the network from the list of known networks and add it again.
2. Run the command prompt as administrator and run:
netsh wlan delete profile name="NETWORK_NAME"
Then add the network again.
3. Check the service WLAN AutoConfig (must be running).
4. Manual connection via the "Control Panel"
An alternative method is through classical Control PanelThis can be useful if the menu Parameters does not work correctly or you prefer the "old" interface.
- Open
Control Panel → Network and Internet → Network and Sharing Center. - Select Setting up a new connection or network.
- Click Connecting to a wireless network manually.
- Fill in the fields:
- Network name (
SSID). - Security type - select from the list (
WPA2-Personal,WPA3,WEPand others). - Security key - password.
- Check mark
Connect even if the network is not broadcasting(for hidden networks).
- Network name (
This method is especially convenient for customization corporate networks With WPA2-Enterprise, as it allows you to specify additional authentication parameters:
| Parameter | Importance for home networking | Significance for the corporate network |
|---|---|---|
| Security type | WPA2-Personal |
WPA2-Enterprise |
| Encryption type | AES |
AES or TKIP |
| Authentication method | — | PEAP, EAP-TTLS or EAP-TLS |
| Server name (RADIUS) | — | For example, radius.company.com |
If you are unsure of your corporate network settings, please contact your administrator for the exact parameters. Incorrect data will result in an error. "Unable to connect to this network".
5. Connecting via the command line (for advanced users)
For advanced users or process automation, you can use command line (CMD). This method is useful if you need to quickly add multiple networks or integrate a setting into a script.
Open CMD as administrator and run the commands step by step:
- View available networks (optional, but useful for diagnostics):
netsh wlan show networks - Adding a new network (replace
NETWORK_NAMEAndPASSWORD):
Note: Create a file firstnetsh wlan add profile filename="C:\temp\wi-fi.xml" user=currentwi-fi.xmlwith configuration (example below). - Network connection:
netsh wlan connect name="NETWORK_NAME" - 📋 Mass deployment of Wi-Fi on several laptops (for example, in an office).
- 🔧 Automate connection via
bat-scripts. - 🛠 Diagnose problems when the graphical interface does not work.
Example file contents wi-fi.xml for the network MyWiFi with a password 12345678:
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1"><name>MyWiFi</name>
<SSIDConfig>
<SSID>
<name>MyWiFi</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<connectionMode>auto</connectionMode>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>
<encryption>AES</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>false</protected>
<keyMaterial>12345678</keyMaterial>
</sharedKey>
</security>
</MSM>
</WLANProfile>
This method is convenient for:
⚠️ Attention: When usingnetshfor corporate networks (WPA2-Enterprise) you must manually specify the authentication parameters inXML-file. A syntax error will result in an inability to connect.
6. Troubleshooting common errors during manual connection
Even if you've entered the correct information, the connection may not work. Let's look at the most common errors and their solutions:
| Error | Possible cause | Solution |
|---|---|---|
"Unable to connect to this network" |
Incorrect password or security type. | Check the register in SSID and password. Make sure the security type matches your router settings. |
| The network does not appear in the list after manual addition. | The network is hidden and the checkbox is checked. "Connect even if the network is not broadcasting" not installed. |
Delete the network and add it again with the correct settings. |
"Windows can't connect to the network". |
Problems with drivers or service WLAN AutoConfig. |
Update the adapter driver and restart the service:
|
| There is a connection, but no internet access. | Incorrect settings IP or DNS. |
Check the parameters IP in the network properties or reset them:
|
If a laptop doesn't see any network, follow these steps:
- Make sure that airplane mode disabled (
Win + A → Airplane Mode). - Check if the service is enabled
Autoconfiguration Wireless Network(services.msc). - Reset network settings:
netsh winsock resetnetsh int ip reset
ipconfig /flushdns
To diagnose connection problems, you can use the command:
netsh wlan show interfaces
Pay attention to the fields State (should be connected) And Signal (signal level). If Signal equal 0%, the problem may be in the adapter antenna or the distance to the router.
7. Additional settings for stable Wi-Fi operation
To improve your connection quality and avoid future problems, please adjust the following settings:
- 📶 Selecting a router channel: If your network has a lot of interference (for example, in an apartment building), change the channel Wi-Fi on the router to a less loaded one (for example,
6or11For2.4 GHz). - 🔄 Updating the router firmware: Outdated firmware may cause compatibility issues with Windows 10. Check for updates on the manufacturer's website (TP-Link, ASUS, MikroTik and others).
- 🛡 Adapter power settings: By default Windows can turn off Wi-Fi- power saving adapter. To avoid this:
- Open
Device Manager → Network Adapters → Properties of your Wi-Fi adapter → Power Management. - Uncheck the box
Allow the computer to turn off this device to save power.
- Open
- 🌐 Changing DNS servers: If websites are opening slowly, try using
DNSfrom Google (8.8.8.8) or Cloudflare (1.1.1.1). - Is it included? Wi-Fi adapter V
Device Manager. - Is it activated? WLAN AutoConfig service (
services.msc → WLAN AutoConfig). - Is it not turned on? airplane mode (
Win + A). - Are they updated? drivers adapter.
- In the field Security type select
No authentication. - Leave a comment Security key empty.
- Save the settings and connect.
- Find out
SSIDand the password in the modem settings on the phone. - Add network to Windows 10 as described above.
- Inconsistencies type of security (for example, the router is configured to
WPA3, and in Windows it is specifiedWPA2). - Failure in password storage Windows.
- Conflict with VPN or antivirus.
- Remove the network from known ones and add it again.
- Check your router settings (especially the parameter
WPA Mode). - Run the command:
netsh wlan delete profile name="*"to delete all saved networks and reconnect.
- Export the network profile with the command:
netsh wlan export profile name="NETWORK_NAME" folder="C:\temp\"File with extension
.xmlwill appear in the specified folder. - Copy the file to another laptop.
- Import profile:
netsh wlan add profile filename="C:\temp\FILE_NAME.xml" user=current
For gaming laptops or devices with Wi-Fi 6 (802.11ax) it is recommended to turn on the mode 802.11n/ac/ax in the adapter settings for maximum speed. This can be done in Device Manager → Adapter Properties → Advanced (parameter Wireless Mode or Bandwidth).
⚠️ Attention: Router settings (for example, turning onWPA3or802.11r Fast Transition) may be incompatible with older adapters. If your laptop stops connecting after changing your router settings, revert to the previous settings or update the driver. Wi-Fi-adapter.
FAQ: Frequently asked questions about manually connecting to Wi-Fi
My laptop can't see any Wi-Fi networks. What should I do?
Check the following:
If the adapter is turned on, but there are no networks, try connecting an external one USB Wi-Fi adapter for diagnostics.
How to connect to Wi-Fi without a password (open network)?
For open networks (without password) when connecting manually:
⚠️ Caution: Open networks are not secure—your traffic can be intercepted.
Is it possible to connect to Wi-Fi from a phone (tethering) manually?
Yes, but this is usually not required. When turned on access points On your phone, the network appears in the list automatically. If you need to add it manually:
If the network is not visible, check if it is turned on Wi-Fi on the phone and whether mobile data access is allowed for the hotspot.
Why does Windows 10 keep asking for a Wi-Fi password even though it's correct?
This happens because:
Solution:
How to export/import Wi-Fi settings to another laptop?
To transfer network settings to another PC:
⚠️ Password in XML-the file is stored in clear text - do not transmit it over unsecured channels.