Connecting your computer to the internet via Wi-Fi seems like a simple task—until you encounter missing drivers, hidden networks, or authentication errors. In practice, even modern PCs with Windows 11 Sometimes they refuse to recognize the router, and older laptops require manual configuration of security protocols. This article will help you understand all the nuances: from choosing an adapter to troubleshooting.
We will look at three main scenarios: connecting via the built-in Wi-Fi module, use of external USB adapter and setting bridge connections (If the internet comes via a cable, but you need to distribute it over the air). We'll pay special attention to typical errors—for example, when the network is visible but doesn't connect, or the speed drops to zero after 5 minutes of use. All instructions are relevant for Windows 10/11, macOS Ventura/Sonoma and popular distributions Linux (Ubuntu, Mint).
If your computer is not equipped with a Wi-Fi module, do not rush to buy a new one - an external adapter is 1500–2500 rubles (as of 2026) will solve the problem without any loss of speed. And desktop PC owners will find the section on choosing a PCIe card with support useful. Wi-Fi 6E.
1. Check if your computer has a Wi-Fi adapter
Before attempting to connect to the network, make sure your computer is physically capable of receiving Wi-Fi. Laptops typically have a built-in module, while desktop computers often don't, requiring a separate device.
To check if the adapter is available Windows:
- Click
Win + R, enterdevmgmt.mscand pressEnter. - IN Device Manager expand the tab
Network adapters. - Look for lines mentioning
Wireless,Wi-Fi,802.11or chip names (Intel AX200, Qualcomm Atheros, Realtek RTL8821CE).
If there are no such lines, your PC cannot catch Wi-Fi. macOS Checking is even easier: click on the icon Wi-Fi in the top panel (if it is not there, there is no adapter). Linux Run the following command in the terminal:
lspci | grep -i network
Modern adapters support the following standards:
- 📶 Wi-Fi 4 (802.11n) — up to 600 Mbps, becoming obsolete, but still found in budget routers.
- 🚀 Wi-Fi 5 (802.11ac) — up to 3.5 Gbps, optimal for most tasks.
- ⚡ Wi-Fi 6/6E (802.11ax) — up to 9.6 Gbps, low power consumption, less interference in apartment buildings.
2. Connecting to Wi-Fi on Windows 10 and 11
If you have an adapter but can't connect, follow these instructions. Windows 11 The interface has changed a little, but the logic remains the same.
Step 1: Open the list of networks. To do this:
- 🖱️ Click on the icon Wi-Fi in the lower right corner of the taskbar (next to the clock).
- 🔍 If there is no icon, click
Win + A(notification center) and find the tileWi-Fi. - 🔄 If the tile is gray, click to turn it on.
Step 2: Select your network from the list and click ConnectIf there is no network:
- 🔍 Make sure your router is turned on and broadcasting the SSID (sometimes network name broadcasting is disabled in the settings).
- 📡 Check if you are too far from the router - concrete walls weaken the signal.
- 🔄 Reboot your router (unplug the power for 30 seconds).
Step 3: Enter your password. If an error appears "Unable to connect to this network":
Check the case of letters in your password (Caps Lock!)
Make sure your router isn't blocking your device by MAC address.
Try connecting from another device (phone) - if it doesn't work, the problem is with the router
Update your Wi-Fi adapter driver-->
| Error | Possible cause | Solution |
|---|---|---|
"The network settings saved on this computer do not match the requirements of this network." |
The security type (for example, from WPA2 to WPA3) or password has changed | Remove the network in Settings → Network & Internet → Wi-Fi → Manage known networks and reconnect |
"Connection is limited" or there is no access to the Internet |
DHCP issues (router not assigning an IP address) | Set a static IP manually or reboot the router |
| The network keeps disconnecting | Power saving turns off the adapter | Open Device Manager → Network Adapters → Your Wi-Fi Properties → Power Management and uncheck "Allow shutdown..." |
3. Setting up Wi-Fi on macOS (Ventura, Sonoma, and later)
On MacBook And iMac Connecting to Wi-Fi is usually trouble-free, but there are some nuances. For example, after a system update, network settings are sometimes reset.
Step 1: Click on the icon Wi-Fi in the top panel (on the right). If it's not there:
- 🔧 Open
System Preferences → Network. - 🖱️ Click on the three dots at the bottom of the interface list and select
Managing virtual interfaces. - ➕ Add a new interface
Wi-Fi, if it is not there.
Step 2: Select the network and enter the password. If macOS stubbornly refuses to connect:
- 🔄 Forget this network: Click on the Wi-Fi icon →
Wi-Fi settings...→ select a network → press"−"(delete). Then reconnect. - 🛠️ Reset
SMC(on MacBook with removable battery: turn off, remove the battery, press and hold the power button for 5 seconds). - 📡 Check your router's Wi-Fi channel—macOS may be unstable on some channels (e.g., 12–14).
How to reset NVRAM on a Mac (if Wi-Fi won't turn on at all)
1. Shut down your Mac.
2. Turn on and immediately hold down Option + Command + P + R.
3. Hold for 20 seconds (on a Mac with Apple Silicon, until you hear the second startup sound).
4. Release the keys and wait for the reboot.
If Wi-Fi is lost after updating macOS, try creating a new one. network configuration:
- Open
System Preferences → Network. - Select
Wi-Fiin the list on the left. - Click on the three dots below →
Duplicate configuration. - Rename it (for example, to
"Wi-Fi New") and apply.
4. Connecting to Wi-Fi on Linux (Ubuntu, Mint, Debian)
On Linux Connecting to Wi-Fi can be more complicated due to the variety of distributions and network managers. We'll look at two options: using a graphical interface and using a terminal.
Method 1: Graphical interface (NetworkManager)
- 🖱️ Click on the network icon in the upper right corner (next to the clock).
- 🔍 Select your network from the list.
- 🔑 Enter your password and confirm the connection.
If there is no network icon, install it NetworkManager:
sudo apt update && sudo apt install network-manager-gnome
Method 2: Terminal (if GUI doesn't work)
- 📋 View the list of available networks:
nmcli dev wifi list - 🔗 Connect to the network (replace
SSIDAndpassword):nmcli dev wifi connect "SSID" password "password" - 🔄 If it doesn't connect, restart the service:
sudo systemctl restart NetworkManager
Common problems on Linux:
- 🚫 Driver missing for a Wi-Fi adapter (especially on newer laptops). Check the website for support for your chip. wireless.wiki.kernel.org.
- 🔌 RFKill Blocking (software-based Wi-Fi shutdown). Check the status:
rfkill listIf there is a block, unblock:
sudo rfkill unblock wifi
network={ssid="Your_network"
psk="your_password"
}
Then run:
-->sudo wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
sudo dhclient wlan0
5. If your computer doesn't see Wi-Fi: diagnostics and solutions
It's common for an adapter to be present but no networks to be visible. The causes can be software-related (drivers, settings) or hardware-related (a broken antenna). Let's break this down step by step.
1. Checking drivers (Windows)
- 🔧 Open
device Manager(devmgmt.msc). - 🔍 Find your Wi-Fi adapter in the section
Network adapters. - 🔄 Right-click →
Update driver→Search for drivers on this computer→Select from the list.... - 📥 If the update didn't help, download the driver from the manufacturer's website (Intel, Realtek, Qualcomm) and install manually.
2. Checking antennas (laptops)
- 📡 On most laptops, the Wi-Fi antennas are connected to the module via thin cables. If these are damaged (for example, when cleaning from dust), the connection will be lost.
- 🛠️ To check, open the back cover of the laptop and make sure the cables (usually black and white) are firmly seated in the module connectors.
3. Router problems
- 📡 Make sure that the router is in the enabled mode
802.11n/ac/ax(sometimes it is in the settings802.11b/g, which is not seen by modern adapters). - 🔒 Check if your router has filtering enabled MAC addresses (list of allowed devices).
- 📶 Try changing the Wi-Fi channel to 1–11 (channels 1–13 are allowed in Russia, but some devices do not support them).
How to check if your Wi-Fi adapter is working at the hardware level
IN Windows open Command line (Win + R → cmd) and run:
netsh wlan show drivers
Look for the lines:
- "Radio Type": "802.11n/ac/ax" — supported standards.
- "Hosted Network Support": "Yes" — the ability to distribute Wi-Fi.
If the adapter is not displayed at all, it is either disabled in the BIOS or broken.
⚠️ Attention: If you recently updated your laptop's BIOS, Wi-Fi might be disabled in the settings. Go to the BIOS (usually byF2orDelat boot) and check if the option is enabledWireless LANorWLAN.
6. How to connect a desktop PC to Wi-Fi without a built-in adapter
If your desktop computer can't connect to Wi-Fi, there are three possible solutions:
1. External USB adapter
- 🔌 The easiest way is to buy a USB adapter (starting at 800 rubles). Popular models:
- 🏆 TP-Link TL-WN823N (Wi-Fi 5, removable antenna).
- ⚡ ASUS USB-AX56 (Wi-Fi 6, speed up to 1.8 Gbps).
- 💰 Tenda U12 (budget option for basic tasks).
- ⚠️ Cons: Takes up a USB port and can slow down under heavy load (for example, when playing online games).
2. PCIe card (internal adapter)
- 🖥️ If you have a free slot
PCIe x1On the motherboard, you can install an internal card: - 🔝 Intel Wi-Fi 6 AX200 (supports
Bluetooth 5.2, speed up to 2.4 Gbps). - 🎮 TP-Link Archer TX3000E (Wi-Fi 6, low ping for gamers).
- ✅ Pros: Doesn't take up USB space, better signal thanks to antennas.
- ❌ Cons: requires disassembling the system unit.
3. Powerline adapters (Wi-Fi alternative)
- ⚡ If the router is far away and the signal is weak, you can transmit the internet via electrical wiring:
- 🔌 Buy a set Powerline (For example, TP-Link AV1000).
- 📡 Connect one adapter to the router with a cable, and the second to a PC in another room.
- ⚠️ The speed depends on the quality of the wiring (in older houses it may be below 100 Mbps).
| Solution | Speed | Price (2026) | Difficulty of installation |
|---|---|---|---|
| USB adapter | Up to 1.8 Gbps (Wi-Fi 6) | 800–3500 ₽ | ⭐ (easy to connect) |
| PCIe card | Up to 2.4 Gbps | 2000–5000 ₽ | ⭐⭐ (need to open the case) |
| Powerline | 10–1000 Mbps | 3000–8000 ₽ (set) | ⭐ (plug into a socket) |
⚠️ Attention: When purchasing a USB adapter, pay attention to the supported standards. Cheap models are based on a chip. Realtek RTL8188 often slow down and lose connection. The best choice is adapters Intel or Qualcomm Atheros.
7. Security: How to secure your Wi-Fi connection
Connecting to the network is only half the battle. It's important to ensure your connection is secure against hacking and data leaks.
Basic router settings:
- 🔐 Change the default password for the router admin panel (usually
admin/adminoradmin/1234). - 📡 Set the security type
WPA3-Personal(orWPA2/WPA3for compatibility).WEPAndWPAunsafe! - 🔄 Turn it off
WPS- This protocol is vulnerable to brute force attacks. - 📵 Hiding the SSID (disabling network name broadcasting) does not improve security—it only makes it more difficult for legitimate devices to connect.
Additional measures:
- 🛡️ Turn on guest network for friends' devices, it is isolated from your main network.
- 🔄 Update your router firmware regularly (there is a section in the admin panel
Software update). - 📊 Set up bandwidth control (QoS) to prevent some devices from clogging up the channel.
For Windows It is also recommended:
- 🔒 Disable automatic connection to open networks:
Settings → Network & Internet → Wi-Fi → Manage known networks → Connection options → Disable "Connect automatically" - 🛡️ Use a VPN (for example, ProtonVPN or Windscribe) in public networks.
8. Common mistakes and their solutions
Even after a successful connection, problems may arise. Let's look at the most common ones.
1. "No internet access" (there is a connection, but websites don't open)
- 🔧 Check your IP settings:
ipconfig /allIf the IP type is
169.254.x.x— The router isn't assigning an address. Reboot it. - 📡 Manually enter DNS (for example,
8.8.8.8And8.8.4.4from Google).
2. Low Wi-Fi speed (compared to cable)
- 📶 Check what frequency the network operates on:
2.4 GHz(longer range but lower speed) or5 GHz(faster, but worse at passing through walls). - 🔄 Switch your router to a free channel (use apps like WiFi Analyzer for Android).
- 🖥️ On Windows, disable
TCP/IP Autoconfiguration:Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings → Wi-Fi Properties → Settings → Advanced → Disable "Automatic configuration"
3. Constant connection breaks
- ⚡ Check the adapter power: in
Device Managerturn it offAllow power off to save power. - 🔌 If you are using a USB adapter, try connecting it via USB hub with external power supply (Some adapters do not work reliably from a laptop port).
- 📡 Update your router firmware – software bugs often cause disconnections.
⚠️ Attention: If the problem appeared after a Windows update, try rolling back the Wi-Fi adapter driver. To do this,Device ManagerRight-click on the adapter →Properties→Driver→Roll back.
FAQ: Answers to Frequently Asked Questions
🔹 Is it possible to connect a PC to Wi-Fi without an adapter?
No, you need a physical adapter (built-in or external) to connect to Wi-Fi. Alternatives:
- Use Powerline adapters (Internet for electrical wiring).
- Connect via Ethernet cable and distribute Wi-Fi from a laptop (mode
access points). - Buy USB adapter (from 800 rubles).
🔹 Why doesn't Windows 11 detect Wi-Fi after updating?
A common issue after major updates. Solutions:
- Update the driver manually (download from the laptop or chip manufacturer's website).
- Roll back your system to a previous restore point.
- Check if the adapter is disabled in
BIOS/UEFI. - Install the driver in
compatibility modewith Windows 10.
If nothing helps, wait for a patch from Microsoft (usually released within 1-2 weeks after the release of the problematic update).
🔹 How to connect to a hidden Wi-Fi network?
Hidden networks (with SSID broadcast disabled) are connected manually:
On Windows:
- Open
Settings → Network & Internet → Wi-Fi → Manage known networks → Add new network. - Enter the network name (
SSID), security type (WPA2-Personal AES) and password.
On macOS: click on the Wi-Fi icon → Connect to another network → enter the data.
On Linux: use the command:
nmcli dev wifi connect "SSID" password "password" hidden yes
🔹 Why is my Wi-Fi speed slower than my cable connection?
This is normal - Wi-Fi is always slower than Ethernet due to:
- 📡 Interference from other networks (especially on
2.4 GHz). - 📦 Packet loss when transmitted by air.
- 🔋 Limitations of the standard (For example,
Wi-Fi 5the maximum is ~800 Mbit/s, and cable - 1 Gbit/s).
To improve speed:
- Switch to
5 GHz(if the router supports it). - Use
Wi-Fi 6(if the adapter and router are compatible). - Reduce the distance to the router or use repeater.
🔹 Can I use my phone as a Wi-Fi adapter for my PC?
Yes, there are two ways:
1. Modem mode (USB cable):
- Connect your phone to your PC via USB.
- Turn it on in your phone settings
Modem mode → USB modem. - Windows will automatically install the driver and