Wireless internet has long been a standard, but many users still face difficulties connecting. personal computer To Wi-Fi. Unlike laptops, where the module Wi-Fi Built-in by default, desktop PCs often require additional hardware or configuration. This article will help you understand all the nuances: from choosing an adapter to resolving common connection errors.
We will consider current methods for Windows 10/11, including connection via built-in system tools, command lineWe'll also cover how to get around this without a password if it's lost. We'll pay special attention to troubleshooting issues such as why a PC can't see the network, why the connection keeps dropping, or why the speed is lower than expected. All instructions are updated for 2026, taking into account the latest updates. Windows and standards Wi-Fi 6/6E.
If your computer is not yet equipped with a module Wi-FiDon't be upset: modern adapters cost from 500 rubles and connect in 5 minutes. And for those who have already tried setting up a connection but encountered errors like "Unable to connect to this network" or "Limited access", we have prepared a separate section with solutions.
1. Checking the presence of a Wi-Fi adapter on your PC
Before attempting to connect to the network, make sure your computer is physically capable of receiving Wi-Fi-signal. In 90% of cases Connection problems are related to the absence or malfunction of the adapter.
To check if a module is available:
- 🖥️ Click
Win + R, enterdevmgmt.mscand pressEnter(will open) device Manager). - 📡 Expand the "Network adapters" Look for devices with names like:
- Wireless, Wi-Fi, 802.11ac or 802.11ax (standards Wi-Fi 5 And Wi-Fi 6).
- Models from Intel (AX200, AX210), Qualcomm Atheros, Realtek (RTL8821CE).
- ❌ If the list only contains "Ethernet controller" or "PCI bridge" — adapter Wi-Fi No.
Important: On some motherboards (eg. ASUS ROG Strix or MSI MAG series 2022+) module Wi-Fi may be built in but disabled in BIOSTo activate it, press when booting your PC. Del or F2, find the section Advanced → Onboard Devices and enable the option Wi-Fi/Bluetooth (usually Enabled).
What does a Wi-Fi adapter look like in Device Manager?
In the list of network adapters, look for a device that mentions "Wireless" or "Wi-Fi." For example:
- Intel(R) Wi-Fi 6 AX200 160MHz
- Realtek RTL8852AE Wi-Fi 6 802.11ax
- Qualcomm Atheros QCA61x4A 802.11ac Wireless Network Adapter
If this is not the case, the adapter is physically missing or is not recognized by the system.
2. Selecting and connecting a Wi-Fi adapter for your PC
If your computer does not have a built-in module Wi-Fi, you'll have to buy an external adapter. They are divided into three types:
| Adapter type | Pros | Cons | Price (2026) |
|---|---|---|---|
| USB (TP-Link TL-WN823N, ASUS USB-AX56) | ✅ Connects in 10 seconds, no need to open the case ✅ Suitable for any PC |
❌ Takes up a USB port ❌ May overheat during prolonged use |
from 600 ₽ |
| PCI-E (TP-Link Archer TX3000E, Intel Wi-Fi 6E AX210) | ✅ High speed (up to 2400 Mbps) ✅ Stable signal |
❌ Requires installation on the motherboard ❌ Antennas are required (included) |
from 2500 ₽ |
| M.2 (NGFF) (Intel AX200, Broadcom BCM94360) | ✅ Compact, does not take up space ✅ Suitable for mini PCs |
❌ Requires a free slot M.2 Key A/E❌ Difficult to install without experience |
from 1800 ₽ |
For most users, the best choice is USB adapter (For example, TP-Link Archer T2U Plus). He supports Wi-Fi 5 (up to 867 Mbps), has a removable antenna for better reception and is compatible with Windows 7/10/11 without additional drivers.
How to connect a USB adapter:
- Insert the device into a free USB port (preferably
USB 3.0- blue color). - Wait for the drivers to install automatically (usually takes 1–2 minutes).
- If the driver is not installed, download it from the manufacturer's website (for example, for Realtek RTL8811CU — official page).
- Restart your PC.
3. Connecting to Wi-Fi via Windows (standard method)
If the adapter is installed and recognized by the system, you can connect to the network through the interface WindowsThe instruction is valid for Windows 10/11 (in older versions the steps may be different).
Step-by-step instructions:
- Click on the network icon in the lower right corner of the screen (next to the clock). Windows 11 she looks like Wi-Fi or globe icon.
- Select your network from the list of available networks. If there is no network, click "Hidden network" and enter the name (
SSID) manually. - Enter password (if required) and press "Next".
- If the prompt "Do you want this computer to be discoverable...", select:
- Yes - if this is a home network and you plan to use file/printer sharing.
- No — for public networks (cafes, airports).
After a successful connection, an icon will appear next to the network icon. Wi-Fi with a check mark, and in the list of networks yours will be marked as "Connected".
The Wi-Fi icon in the tray is active (no red cross)
Websites open in the browser (try google.com)
In the command line after entering ping 8.8.8.8 no errors
Speed in Settings → Network → Wi-Fi corresponds to the tariff-->
If after entering the password the error "Unable to connect to this network", try entering the password manually through "Managing known networks" (see section 5).
4. Connecting via the command line (for advanced users)
Sometimes the standard interface Windows doesn't work correctly (for example, after updates or a factory reset). In such cases, command line (CMD).
Instructions:
- Open
Command lineas administrator:- Click
Win + X→ "Terminal (Administrator)". - Or enter in the search
cmd, then right-click → "Run as administrator".
- Click
netsh wlan show networks
In the results, find the line "SSID" is the name of your network.
NETWORK_NAME And PASSWORD on your own):
netsh wlan connect name="NETWORK_NAME" ssid="NETWORK_NAME"
If the network is password protected, first add it to your profile:
netsh wlan add profile filename="C:\path\to\file.xml"
(how to create XML-file with settings - see spoiler below).
How to create an XML file for Wi-Fi connection?
Open Notebook and paste the following template (replace NETWORK_NAME And PASSWORD):
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1"><name>NETWORK_NAME</name>
<SSIDConfig>
<SSID>
<name>NETWORK_NAME</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>PASSWORD</keyMaterial>
</sharedKey>
</security>
</MSM>
</WLANProfile>
Save the file with the extension .xml (For example, wifi_profile.xml) and specify the path to it in the command netsh.
This method is useful if:
- 🔄 Need to quickly reconnect to the network after a failure.
- 🛠️ Standard interface Windows does not respond to clicks.
- 📶 You need to connect to a hidden network (
SSID(not broadcast).
5. Connecting without a password (via WPS or known networks)
If you forgot your password Wi-Fi, there are several ways to bypass its input. Important: These methods only work if you have previously connected to this network on another device or if the router supports it. WPS.
Method 1: Use WPS (Wi-Fi Protected Setup)
- 🔄 Click the button WPS on the router (usually it is labeled and blinks after pressing).
- 🖥️ On your PC, select your network in the list of networks → "Connect via WPS" (if there is no such option, update the adapter driver).
- ⏳ Wait 1–2 minutes – the connection will be established automatically.
Method 2: View your password on another device
- 📱 On Android: go to
Settings → Wi-Fi, tap on your network → "Share password" (PIN or fingerprint required). - 🍎 On iPhone:
Settings → Wi-Fi→ click oninext to the network → copy the password (required) iOS 16+). - 💻 On another PC with Windows:
netsh wlan show profile name="NETWORK_NAME" key=clearLook for the line "Key content" in the section "Security parameters".
Method 3: Reset the router password
⚠️ Attention: Resetting your router to factory settings will disconnect all users from the network! After the reset, you'll have to set up your internet connection again (login information is usually found on a sticker on the router).
- 🔧 Find the button on your router Reset (usually recessed into the body).
- 📍 Press it with a paper clip and hold for 10-15 seconds until the indicators flash.
- 🔄 Connect to the network with the factory name (for example,
TP-Link_1234) and password (indicated on the sticker).
6. Solving common connection problems
Even if everything is configured correctly, errors can still occur. Let's look at the most common ones and how to fix them.
| Problem | Possible cause | Solution |
|---|---|---|
Unable to connect to this network |
❌ Incorrect password ❌ The network is operating in the mode 802.11r (Fast Transition) |
✅ Reconnect with the correct password ✅ Disable it in your router settings 802.11r (chapter Wi-Fi → Advanced) |
Limited access (no internet) |
DHCP issues on router ❌ MAC address blocking |
✅ Reboot your router ✅ Enter IP manually: 192.168.1.100 (mask 255.255.255.0, gateway 192.168.1.1) |
| The network is not displayed in the list. | ❌ The adapter is disabled ❌ Network hidden ( SSID Hidden) |
✅ Turn on the adapter in Device Manager✅ Connect manually via "Hidden network" |
| Low speed or breaks | ❌ Interference from other networks ❌ Outdated standard 802.11n |
✅ Change the channel on the router (for example, to 40 or 149)✅ Update your adapter to Wi-Fi 6 (AX200) |
Additional steps if you have problems:
- 🔄 Rebooting the router: Unplug it from the power supply for 30 seconds, then plug it back in.
- 📡 Updating drivers: Download the latest version from the adapter manufacturer's website (for example, for Intel AX200 — Intel Download Center).
- 🛠️ Reset network settings Windows:
netsh int ip resetnetsh winsock resetThen restart your PC.
⚠️ Attention: If after the update Windows disappeared Wi-Fi, check if the drivers have been rolled back. Device Manager Right-click on the adapter → "Update driver" → "Search this computer" and select the latest version manually.
7. Optimizing Wi-Fi connection on your PC
Even if the connection is established, speed and stability can be improved. Here are a few proven methods:
1. Selecting the optimal channel
- 📊 Use utilities like Wi-Fi Analyzer (For Android) or inSSIDer (for PC) to find the least congested channel.
- 🔧 In the router settings (usually
192.168.1.1) go to the sectionWi-Fi → Channeland choose a free one (for example,36For5 GHz).
2. Setting network priority
If you have dual router (2.4 and 5 GHz), Windows may automatically connect to a slower network. To fix this:
- Open
Settings → Network → Wi-Fi → Manage known networks. - Select your network → "Properties".
- Uncheck the box "Connect automatically" for the network
2.4 GHz(if it is less of a priority).
3. Disable adapter power saving
Windows reduces power by default Wi-Fi- power saving adapter, which can cause disconnections. To disable this:
- Open
device Manager→ "Network adapters". - Right-click on the adapter → "Properties" → tab "Power management".
- Uncheck the box "Allow the computer to turn off this device to save power".
- Channel: 36–48 (5 GHz) or 1–3 (2.4 GHz)
- Channel width: 80 MHz (for Wi-Fi 6)
- Standard: 802.11ax (Wi-Fi 6) or 802.11ac (Wi-Fi 5)
- Security mode: WPA3 (if supported)-->
FAQ: Frequently asked questions about connecting a PC to Wi-Fi
🔹 Is it possible to connect a PC to Wi-Fi without an adapter?
No, you need one for wireless connection. Wi-Fi- adapter (built-in or external). Alternative methods:
- Use USB modem (for example, from Megaphone or Beeline).
- Connect via Ethernet (cable from the router).
- Distribute Wi-Fi from a smartphone (mode "Access point").
🔹 Why does my PC see the network but not connect?
Reasons and solutions:
- Incorrect password: check the case (upper/lower case letters).
- MAC address restriction: In the router settings, add the MAC address of your PC (you can find it through
ipconfig /allVCMD). - Incompatible safety standard: Change the encryption type in your router
WPA3onWPA2-PSK.
🔹 How to connect to Wi-Fi 6E (6 GHz)?
For operation in the range 6 GHz necessary:
- 📡 Router with support Wi-Fi 6E (For example, ASUS RT-AX89X or TP-Link Archer AXE75).
- 🖥️ Adapter with support
6 GHz(For example, Intel AX210). - 📋 Enable the range in your router settings
6 GHz(chapterWi-Fi → 6 GHz Settings).
Important: In Russia the range 6 GHz officially permitted for Wi-Fi from 2026, but some devices may require a firmware update.
🔹 Can I use my PC as a Wi-Fi repeater?
Yes, but this will require:
- Two Wi-Fi- adapter (one for receiving the signal, the second for distribution).
- Special software like Connectify Hotspot or Virtual Router Plus.
- Setting "Internet Sharing" V
Settings → Network → Mobile Hotspot.
Cons: high latency (ping) and a reduction in speed by 30–50%.
🔹 Why does Wi-Fi disappear after sleep/hibernation?
This is a common problem. Windows, related to adapter power management. Solutions:
- Turn off "Allow power off to save power" (see section 7).
- Update your adapter driver to the latest version.
- IN
Control Panel → Power Optionsselect scheme "High performance".