If your computer refuses to connect to Wi-Fi and you urgently need internet, don't rush to run a cable across your entire apartment. In 90% of cases, the problem can be solved with software or minimal hardware investment. Wireless networking is possible even on older PCs without built-in Wi-Fi, provided you understand the nuances of configuring adapters, drivers, and alternative internet sharing methods.
Many users mistakenly believe that Wi-Fi requires a laptop or a modern system unit with an integrated module. In reality, any device is sufficient. USB adapter for 500-1500 rubles or even a smartphone Android/iOSto distribute internet over the air. In this article, we'll cover all the current methods—from basic setup to Windows to non-obvious life hacks using Linux and external devices.
Before you proceed with the instructions, please check two key points:
- Make sure the router is turned on and broadcasting the network (the Wi-Fi indicator on the router should be lit or blinking).
- Try connecting to the same network from another device (phone, tablet). If it doesn't work there either, the problem is with the router, not the PC.
1. Checking Wi-Fi hardware support on your computer
The first thing you need to do is find out if your PC has a physical Wi-Fi moduleEven if you don't see the network icon in the system tray, it doesn't mean the adapter isn't there: it might be disabled in the settings or require drivers.
IN Windows 10/11 check it like this:
- Click
Win + R, enterdevmgmt.mscand pressEnter. - IN
Device Managerexpand the tabNetwork adapters. - Look for lines with words
Wireless,Wi-Fi,802.11or brand names (Intel, Qualcomm, Realtek).
If there are no such lines, you either have a desktop PC without a built-in module, or the adapter is disabled in BIOSIn the first case, it will be necessary external USB adapter (We'll talk about them in section 3). In the second, enable the module in the settings. BIOS:
- 🔧 Restart your PC and go to
BIOS(usually a keyDel,F2orEscat startup). - 🔍 Find the section
Advanced→Onboard Devices Configuration(names may differ). - 🔄 Make sure the parameter
Wi-FiorWireless LANstands in positionEnabled.
⚠️ Note: On some motherboards ASUS And Gigabyte The Wi-Fi module can be disabled using a hardware switch on the back of the case. Look for a small button with an antenna or text on it. WLAN.
2. Setting up Wi-Fi in Windows: Step-by-step instructions
If the adapter is detected, but the network does not connect, the problem is in the drivers or settings. Windows. Follow this algorithm:
Step 1: Install/Update Drivers
- 🖥️ Download the driver from the official website of the adapter manufacturer (Intel, Realtek, TP-Link and others).
- 🔄 For automatic search: open
device Manager→ right-click on the adapter →Update driver→Automatic search. - 📁 If Windows If the driver is not found, install it manually by specifying the folder with the downloaded file.
Step 2: Connecting to the Network
- Click on the network icon in the tray (bottom right).
- Select your network from the list and click
Connect. - Enter your password (make sure the case is correct!).
- If the network is not in the list, click
Hidden networkand enter the name (SSID) manually.
Step 3. Diagnosing problems
If the connection fails:
- 🔄 Reboot your router (pull the plug for 30 seconds).
- 📶 Check if it is enabled on your PC
Airplane mode(Win + A→ notification panel). - 🔧 Launch
Troubleshooter:Parameters→Network and Internet→State→Network troubleshooter.
Make sure the router is turned on and distributing Wi-Fi|
Check that the adapter is not disabled in BIOS|
Update Wi-Fi module driver|
Disable Airplane Mode on PC|
Restart your computer and router-->
3. External Wi-Fi adapters: which one to choose and how to connect
If your PC doesn't have built-in Wi-Fi, the easiest way to add it is to buy one. USB adapterThese devices connect to any available port and are immediately ready to use (after installing the drivers).
A critical detail: chip-based adapters Realtek RTL8188 often conflict with Windows 11 - choose models on Intel or Qualcomm Atheros for stable operation.
| Adapter type | Speed | Standards support | Sample models | Price, ₽ |
|---|---|---|---|---|
| USB 2.0 (small) | up to 150 Mbit/s | 802.11n | TP-Link TL-WN725N, Tenda U3 | 400–700 |
| USB 3.0 (with antenna) | up to 600 Mbps | 802.11ac | ASUS USB-AC56, D-Link DWA-171 | 1200–2000 |
| PCIe (internal) | up to 1300 Mbps | 802.11ac/ax | TP-Link Archer T6E, Gigabyte GC-WB1733D-I | 2500–4000 |
How to connect a USB adapter:
- Insert the device into the port
USB 2.0or3.0(blue ports are preferred). - Wait for the drivers to install automatically (if not, download them from the manufacturer's website).
- Restart your PC.
- Connect to Wi-Fi as described in Section 2.
⚠️ Attention: Cheap adapters without antenna (RTL-SDR) may have poor signal reception at distances greater than 5 meters from the router. For larger apartments, choose models with an external antenna.
4. Alternative connection methods without an adapter
If you don't want to buy an adapter, you can make do with improvised means. Let's look at three working methods:
Method 1: Sharing Wi-Fi from a Smartphone (USB Tethering)
- 📱 Connect Android- smartphone to PC via
USB. - 🔗 Turn it on in your phone settings
USB modem(Settings→Network and Internet→Access point and modem). - 🖥️ On PC in
Networksa new connection will appearEthernet— the Internet will work via the telephone.
Method 2. Bridge via a second computer
If you have a laptop with Wi-Fi, you can use it as a bridge:
- Connect your laptop to the router via Wi-Fi.
- Connect your laptop and desktop PC
LAN cable. - On the laptop:
Parameters→Network and Internet→Mobile hotspot→ Allow connection sharing.
Method 3. Powerline adapters (Internet via electrical wiring)
If the router is far away and pulling the cable is inconvenient, use Powerline-set (for example, TP-Link TL-PA4010):
- 🔌 Connect the first adapter to the router and power outlet.
- 🔌 Plug the second adapter into a socket near the PC and connect them
LAN cable. - 💡 Data will be transmitted over electrical wiring at speeds of up to 500 Mbps.
5. Setting up Wi-Fi in Linux (Ubuntu, Mint, Debian)
In distributions based on Linux the Wi-Fi connection is organized differently than in WindowsBasic tools - NetworkManager (graphical interface) and iwconfig/wpa_supplicant (console).
Method 1. Via the graphical interface
- Click on the network icon in the upper right corner.
- Select the desired network and enter the password.
- If the network is not listed, click
Edit Connections→Addand enterSSIDmanually.
Method 2. Via the terminal
If the GUI does not work, use the commands:
# Checking available networkssudo iwlist wlan0 scan | grep ESSID
Connect to the network (replace SSID and password)
sudo nmcli dev wifi connect "your_SSID" password "your_password"
To make a permanent connection, edit the file /etc/network/interfaces:
auto wlan0iface wlan0 inet dhcp
wpa-ssid "your_SSID"
wpa-psk "your_password"
⚠️ Note: In some distributions (for example, Arch Linux)NetworkManagerIt is not installed by default. Install it with the commandsudo pacman -S networkmanagerand runsudo systemctl enable --now NetworkManager.
6. Troubleshooting common connection errors
Even if you've done everything correctly, Wi-Fi may not work due to specific issues. Let's look at the top 5 errors and their solutions:
| Error | Cause | Solution |
|---|---|---|
Failed to connect to the network |
Incorrect password or hidden network | Check the case of the characters in the password. For a hidden network, enter SSID manually. |
Limited connection |
DHCP issues or IP conflicts | In the command line, run:
|
No connections available |
The adapter is disabled or there are no drivers. | Check it out device ManagerIf the adapter is marked with an exclamation mark, update the driver. |
Authentication failed |
Incompatibility of safety standards | In the router settings, change the encryption type from WPA3 on WPA2-PSK. |
Additional tips:
- 🔄 If Wi-Fi connects but the internet doesn't work, check your settings.
DNSTry typing it in manually.8.8.8.8(Google) or1.1.1.1(Cloudflare). - 📡 If the signal is weak, change the Wi-Fi channel in the router settings (for example, from
Autoon6or11). - 🔧 Temporarily disable your firewall and antivirus software—they may be blocking the connection.
What should I do if the adapter is detected as "Unidentified Device"?
This means that Windows Can't find the driver automatically. Solution:
1. Find out Device ID V Device Manager (right click → Properties → Intelligence → Equipment ID).
2. Copy the line like this USB\VID_XXXX&PID_XXXX.
3. Find the driver by this ID on the website devid.info or the adapter manufacturer.
7. Optimize Wi-Fi for stable operation
If your Wi-Fi connects but is slow or drops out, try these settings:
On the router side:
- 📶 Change the broadcast standard with
802.11b/g/non802.11n/ac(in the router settings, sectionWireless). - 🔄 Turn on
WMM(Wi-Fi Multimedia) for traffic prioritization. - 🛡️ Turn it off
WPS- this is unsafe and can cause conflicts.
On the PC side:
- 🖥️ In
Adapter parameters(Win + R→ncpa.cpl) turn it offEnergy savingsfor Wi-Fi module. - 🔧 In
Additional parametersinstall networksMTU value=1472(if breaks are observed). - 📊 Use the utility NetSpot or Wi-Fi Analyzer to analyze channel load.
FAQ: Frequently asked questions about connecting Wi-Fi to a PC
My PC can't see the Wi-Fi network, even though the adapter is installed. What's wrong?
There are several reasons:
- The adapter is disabled in
Device Manager(right click →Engage). - The driver is not installed correctly (check in
Propertiesdevices, whether there are any errors). - The router broadcasts in the range
5 GHz, and your adapter only supports2.4 GHz(change router settings). - On
Airplane modeV Windows.
Is it possible to connect an old PC (2010) to Wi-Fi without an adapter?
Yes, but with some reservations:
- If there is a connector on the motherboard
PCIorPCIe, buy an internal Wi-Fi module (for example, TP-Link TL-WN881ND). - Use USB adapter (even the oldest PCs support
USB 2.0). - Connect via smartphone By
USB(tetring) orBluetooth(slower, but it works).
For Windows XP You will have to search for drivers manually - there is no support for new adapters.
Why does Wi-Fi work on a laptop but not on a PC with an adapter?
Possible reasons:
- Different Wi-Fi standards: The laptop supports
802.11ac, and the PC adapter is only802.11nSolution: Select mixed mode in your router settings.802.11n/ac. - Channel conflict: The PC adapter may not be able to hear the router due to interference. Solution: Change the channel on the router (for example, from
6on11). - MAC address restriction: There may be a filter enabled in your router.
MAC addressesSolution: Disable filtering or addMACPC adapter to the list of allowed ones.
How do I connect my PC to Wi-Fi if my router requires web login (like in hotels)?
The algorithm is as follows:
- Connect to a Wi-Fi network (even if the internet is not working).
- Open any browser (Chrome, Edge).
- Enter in the address bar
192.168.1.1orneverssl.com— the authorization page should open. - Enter your login/password (usually provided by the network administrator).
If the page does not open, check your proxy settings: Parameters → Network and Internet → Proxy → disable all options.
Can I use Wi-Fi 6 (802.11ax) on an old PC?
Technically yes, but with some caveats:
- Need to buy Wi-Fi 6 adapter (For example, ASUS USB-AX56 or TP-Link Archer TX3000E).
- The router must also support
802.11ax. - On Windows 7/8 There may be no drivers for Wi-Fi 6 - update to Windows 10/11.
The speed increase will only be noticeable if your Internet tariff is higher than 300 Mbps.