Connecting your computer to your home Wi-Fi network seems like a simple task—until you encounter errors like "No available connections" or "Unable to connect to the network." Even if your router is reliably distributing internet to phones and tablets, your PC may stubbornly ignore the network due to outdated drivers, incorrect settings, or hardware limitations. In this article, we'll look at all current connection methods — from the standard Windows interface to manual configuration via the command line, and we'll also find out why the laptop "doesn't detect" Wi-Fi, even though there's a phone with a full signal nearby.
We will pay special attention to Windows 11 And macOS Ventura/Sonoma, where the connection interface has changed compared to previous versions. We'll also look at the nuances for desktop PCs (they often require a separate Wi-Fi adapter) and cases where the network is visible, but the connection "freezes" at the IP address acquisition stage. At the end of the article is a checklist for diagnosing problems and answers to frequently asked questions, including How to connect to a hidden network without broadcasts.
1. Preparation: What to check before connecting
Before attempting to connect your computer to Wi-Fi, make sure the problem isn't rooted in basic issues. Start with the router:
- 🔌 Power and indicators: the wireless network indicator on the router body should be lit (usually indicated by an antenna icon or
Wi-Fi). If it is flashing orange or is not active, reboot the device with the buttonReset(hold for 10 seconds). - 📶 Network range: modern routers broadcast in two ranges -
2.4 GHz(long-range but slow) and5 GHz(fast, but with a smaller coverage area). Make sure your computer supports the required range (see adapter specifications). - 🔒 Network passwordIf you recently changed the password on your router but haven't updated it on your other devices, your computer won't be able to connect. The password is case-sensitive!
Next, check the computer itself:
- 🖥️ Availability of a Wi-Fi adapter: Desktop PCs often don't have a built-in Wi-Fi module. You can check this in
Device Manager(Windows) or inAbout This Mac → System Report → Networks(macOS). If you don't have an adapter, you'll need an external USB or PCIe module (e.g., TP-Link Archer T4U or ASUS USB-AC56). - ⚡ Is the adapter turned on?: On laptops, Wi-Fi can be turned off using a hardware button (for example,
Fn + F2on Lenovo) or in the BIOS settings. On the PC, check to see if the antenna is disconnected from the adapter (this applies to discrete modules).
⚠️ Attention: If you use VPN or third-party firewalls (for example, Kaspersky Internet Security), temporarily disable them - they may block connections to new networks.
2. Method 1: Standard connection via the Windows interface
This is the simplest method, which works in 90% of cases. The instructions are relevant for Windows 10 And Windows 11:
Click on the network icon in the lower right corner of the taskbar (next to the clock). Windows 11 it looks like a stylized wave
📶.In the list of available networks, find your Wi-Fi name (SSID). If there is no network, click
Hidden network(more about this method in section 4).Click on the network name and check the box
Connect automatically. ClickConnect.Enter the network password. If the password is long, use the clipboard (
Ctrl + V) to avoid mistakes.
If the connection is successful, the following message will appear next to the network name: ConnectedTo check your internet access, open your browser and try loading any website (for example, google.com).
⚠️ Attention: IN Windows 11 after the update 23H2 You may see the error "We couldn't connect to this network." In this case, try forget the network (right click on it → Forget) and reconnect.
☑️ Checking the connection in Windows
3. Method 2: Connecting via Settings (for hidden networks or problematic adapters)
If your network is hidden (does not broadcast SSID) or the standard method did not work, use manual connection:
Open
Settings → Network and Internet → Wi-Fi(V Windows 11 path:Start → Settings → Network & Internet).Click
Managing known networks→Add a new network.Enter:
- Network name (SSID) - exactly the same as it is specified in the router settings (case sensitive!).
- Security type - usually
WPA2-PersonalorWPA3-Personal. - Password.
Check the box Connect automatically and press Save.
For macOS the path will be different:
System Preferences → Network.- Select
Wi-Fiin the left menu →Additionally. - In the section
Favorite networksclick+and enter the network details. - 🔄 Restart your router and computer - this solves 30% of the problems.
- 🔧 Update your Wi-Fi adapter driver:
- Open
device Manager(Win + X → Device Manager). - Expand the section
Network adapters. - Find your Wi-Fi adapter (e.g. Intel Wi-Fi 6 AX200 or Qualcomm Atheros), right-click →
Update driver.
- Open
- 📡 Check your router settings: go to the router's web interface (usually at
192.168.0.1or192.168.1.1>) and make sure that:- The mode is on
802.11n/ac/ax(and not only802.11b/g). - Channel width is not set in
40 MHz(try it20 MHzfor stability). - The MAC address filter is disabled (if enabled, add your PC's MAC address).
- The mode is on
| operating system | Path to Wi-Fi settings | Peculiarities |
|---|---|---|
| Windows 10 | Settings → Network and Internet → Wi-Fi |
You can set the priority of networks (which one connects first) |
| Windows 11 | Start → Settings → Network & Internet |
The interface has been simplified, but a "Random MAC addresses" option has been added. |
| macOS Ventura/Sonoma | System Preferences → Network → Wi-Fi → Advanced |
Supports WPA3 And 802.11ax (Wi-Fi 6) |
| Linux (Ubuntu) | Settings → Wi-Fi or nmcli in the terminal |
You may need to install proprietary drivers for some adapters. |
4. Method 3: Connecting via the command line (for advanced users)
This method is useful if the graphical interface does not work or you need to automate the connection (for example, via a script). We use netsh — built-in Windows tool:
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"
Where xml file — this is the network configuration file. To create it, run:
netsh wlan export profile name="NETWORK_NAME" folder="C:\temp\"
Then edit the exported file in Notepad, replacing the password and other parameters. Example file contents:
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1"><name>MyWiFi</name>
<SSIDConfig>
<SSID>
<name>MyWiFi</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>
<encryption>AES</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>false</protected>
<keyMaterial>YOUR_PASSWORD</keyMaterial>
</sharedKey>
</security>
</MSM>
</WLANProfile>
⚠️ Attention: Password in file XML Stored in clear text. After connecting, delete the file or store it in a secure location.
How to connect to Wi-Fi without a password (only for authorized networks)
If the network is open (no password), use the command:
netsh wlan connect name="NETWORK_NAME" ssid="NETWORK_NAME" interface="Wi-Fi"
But remember that unsecured networks are dangerous—traffic can be intercepted by attackers.
5. Troubleshooting common connection errors
Even if you've done everything correctly, Windows or macOS may still throw errors. Let's look at the most common ones:
Error: "Unable to connect to this network"
Error: "Network without internet access"
If your computer is connected to Wi-Fi, but the internet isn't working:
- 🔍 Check if your PC is receiving an IP address: Open a command prompt (
Win + R → cmd) and enter:
ipconfig /all
If in the section Wireless network adapter IP type is specified 169.254.x.x — this means DHCP didn't work. Try setting the IP manually:
- Open
Settings → Network & Internet → Wi-Fi → Configure adapter settings.
- Right-click on your Wi-Fi adapter →
Properties → Internet Protocol version 4 (TCP/IPv4).
- Select
Use the following IP address and enter:
- IP address:
192.168.0.100 (if the router 192.168.0.1)
- Subnet mask:
255.255.255.0
- Default gateway:
192.168.0.1
- DNS:
8.8.8.8 (Google) or 1.1.1.1 (Cloudflare)
🔄 Restart the DHCP service: In the command prompt as administrator, enter:
net stop dhcp && net start dhcp
Error: "No connections available" (no network visible)
If the computer does not see any networks:
- 🛠️ Check the physical connection of the adapterOn a PC, make sure the USB or PCIe adapter is securely seated in the slot. On laptops, try turning on the Wi-Fi button.
Fn + F2 (or other, depending on the model).
- 🔄 Enable WLAN AutoConfig service:
- Click
Win + R, enter services.msc.
- Find a service
Automatic WLAN configuration.
- If it is stopped, right-click →
Launch.
🔧 Install the driver manually: If Windows does not recognize the adapter, download the driver from the manufacturer's website (for example, for Realtek RTL8821CE or Broadcom BCM4352) and install it manually through device Manager.
6. Connecting to a hidden network (without broadcasting SSID)
Some routers are configured not to broadcast the network name (SSID). This improves security but complicates connection. To connect to such a network:
Find out the exact network name (SSID) and password. This information can be viewed:
- On the sticker on the router (if the settings have not been changed).
- In the router's web interface (
192.168.0.1 or 192.168.1.1, chapter Wireless or Wi-Fi).
In Windows:
- Open
Settings → Network and Internet → Wi-Fi.
- Click
Manage known networks → Add new network.
- Enter the SSID, select the security type (
WPA2-Personal or WPA3-Personal) and password.
On macOS:
- Open
System Preferences → Network → Wi-Fi → Advanced.
- In the section
Favorite networks click + and add the network manually.
If you are not sure of the network name, you can scan the air using a utility NetSpot (Windows/macOS) or commands in the Linux terminal:
sudo iwlist wlan0 scan | grep ESSID
⚠️ AttentionConnecting to hidden networks is less secure than it seems. An attacker can create a fake network with the same SSID, and your computer will connect to it automatically. Use hidden networks only in conjunction with WPA3 and complex passwords.
7. Connection Optimization: How to Speed Up Wi-Fi on Your Computer
If your computer is connected, but the speed is slow or the connection is unstable, try these methods:
- 📶 Change the Wi-Fi channel on the router:
- Enter your router settings (
192.168.0.1).
- In the section
Wireless or Wi-Fi select a channel manually (eg 6 or 11 For 2.4 GHz).
- Use the utility Wi-Fi Analyzer (Android) or NetSpot (Windows/macOS) to find the least congested channel.
- 🔧 Disable power saving for your Wi-Fi adapter:
- Open
device Manager.
- Find your Wi-Fi adapter →
Properties → Power Management.
- Uncheck the box
Allow the computer to turn off this device to save power.
- 🖥️ Update your router firmware:
- Log into your router's web interface.
- Find the section
Software update or Firmware.
- Download the latest firmware from the manufacturer's website (for example, for TP-Link Archer C6 or ASUS RT-AX88U) and install it.
- 🛡️ Change DNS servers:
- Open
Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings.
- Right-click on your Wi-Fi adapter →
Properties → Internet Protocol Version 4 (TCP/IPv4).
- Enter DNS:
1.1.1.1 (Cloudflare) or 8.8.8.8 (Google).
For desktop PCs with an external Wi-Fi adapter (TP-Link TL-WN823N, ASUS USB-AC51 etc.) the location of the device is important:
- Do not connect the adapter to the front USB port as it may cause interference.
- Use a USB extender to position the adapter higher up (for example, on a shelf).
- Avoid placing near sources of interference: microwaves, cordless phones, Bluetooth speakers.
8. Alternative connection methods if Wi-Fi doesn't work
If you can't connect to Wi-Fi, consider these alternatives:
- 🔌 Ethernet cable: The most stable solution. Connect your computer to the router with a twisted pair patch cord. This will increase speed and reduce latency.
- 📱 USB tethering:
- Connect your phone to your computer via USB.
- Turn on your phone
Modem mode (on Android: Settings → Network & Internet → Hotspot & Tethering).
- In Windows, the phone will be detected as a network adapter.
- 🔄 Powerline adapters:
- Use electrical wiring to transmit internet. Connect one adapter to the router and the other near the computer.
- Suitable for cases when the router is far away and laying a cable is inconvenient.
- Examples of models: TP-Link AV1000, Devolo Magic 2 Wi-Fi.
- 🌐 4G/5G modem:
- If the problem is with your internet provider, use a USB modem (Huawei E3372, ZTE MF833V).
- Insert a SIM card with an unlimited tariff and connect the modem to the computer.
⚠️ AttentionMobile operator interfaces and rates may vary. Before purchasing a modem, check with your provider to see if they support unlimited internet (some operators limit speeds after 100–200 GB of traffic).
FAQ: Answers to Frequently Asked Questions
My computer can't see the 5 GHz network, only the 2.4 GHz one. What should I do?
This means that your Wi-Fi adapter does not support the range. 5 GHz. Check the adapter specifications (e.g. Intel Wireless-AC 9560 supports 5 GHz, A Realtek RTL8188EE - no). Solutions:
- Buy an external adapter with support
5 GHz (For example, TP-Link Archer T4U).
- Use only
2.4 GHz, but be prepared for slower speeds.
- On some laptops (for example, older models Lenovo or HP)
5 GHz disabled in BIOS. Enter BIOS (usually by pressing F2 or Del at boot) and enable the option Wireless 5GHz Band.
How to connect to Wi-Fi without a password (if you forgot it)?
If you have access to another device already connected to this network (such as a phone or tablet), you can find out the password:
- On Android (root rights required or Android 10+):
- Install the application WiFi Password Viewer.
- Find your network in the list - the password will be displayed.
- On iPhone/iPad (without jailbreak):
- Open
Settings → Wi-Fi.
- Click on the icon
i next to the network name.
- The password will be displayed in the field.
Password (Face ID/Touch ID verification required).
On Windows (if the computer has previously connected to this network):
- Open Command Prompt as administrator.
- Enter:
netsh wlan show profile name="NETWORK_NAME" key=clear
- The password will be in the line
Key content.
If there is no access to connected devices, reset the router to factory settings (button Reset for 10 seconds) - the password will return to the standard one (indicated on the sticker).
Why does Windows 11 keep disconnecting from Wi-Fi?
This issue is often related to power saving settings or driver conflicts. Try:
- Disable power saving for the Wi-Fi adapter (see section 7).
- Update the adapter driver manually:
- Download the latest version from the manufacturer's website (not through
device Manager!).
- Remove the old driver via
device Manager (right click → Remove device).
- Install the new driver and restart your computer.
- Disable the feature
Random Hardware Addresses (random MAC addresses):
- Open
Settings → Network and Internet → Wi-Fi.
- Click on your network name →
Random hardware addresses → select Off
- Check your router settings:
- Turn it off