What driver is needed to connect a laptop to Wi-Fi: Let's figure it out from scratch

Connecting a laptop to Wi-Fi seems like a simple task—until you run into problems. One of the most common scenarios: the system doesn't see any available networks, and a yellow exclamation point appears next to the adapter in Device Manager. In 90% of these cases, the culprit is a missing, damaged, or outdated adapter. Wi-Fi driverBut how do you know which driver your device needs? Where can you download it? And what should you do if standard methods don't work?

In this article, we'll look at how to identify the model of your laptop's Wi-Fi adapter, where to find the correct driver, and how to avoid common installation errors. We'll also cover the nuances for different operating systems, from Windows 10/11 to Linux And macOSWe'll also find out why the driver is sometimes installed, but the internet still doesn't work, and what to do about it.

If you're not a techie, don't worry. We'll explain everything in simple terms, without unnecessary jargon. If you're an experienced user, you'll find some rare life hacks here that aren't covered in standard instructions. For example, how to manually select a driver based on your needs. Vendor ID And Device ID, or what to do if the laptop manufacturer "forgot" to release the driver for your model.

1. How to find out which Wi-Fi driver your laptop needs

The first step is to identify Wi-Fi adapter modelWithout this, it's impossible to select the correct driver. There are several ways to do this, and we'll review them from the simplest to the most reliable.

The fastest method is to look at the adapter name in Device Manager (For Windows):

  1. Click Win + X and select "Device Manager".
  2. Expand the Network Adapters section.
  3. Find the device with the words Wireless, Wi-Fi, Network or 802.11 in the title.

If the adapter is displayed with a yellow sign, right-click it, select Properties → Details tab → Hardware IDs property. Here you will see lines like PCI\VEN_168C&DEV_0036That's it. Vendor ID (VEN_168C) And Device ID (DEV_0036) are universal identifiers that can be used to find a driver even if the adapter name is unknown.

For Linux And macOS use terminal:

  • 🐧 Linux: enter the command
    lspci -knn | grep -iA3 net
    and find the line with Network controller.
  • 🍎 macOS: do it
    networksetup -listallhardwareports
    and pay attention to the section Wi-Fi.

If the adapter isn't detected by any of these methods, it's either disabled in the BIOS or physically damaged. In this case, the driver won't help—hardware diagnostics are required.

2. Where to download Wi-Fi drivers: official and alternative sources

Once the adapter model is known, all that remains is to find a driver for it. Always start with the manufacturer's official website — this is a guarantee of compatibility and security. Here's where to look:

Adapter manufacturer Link to the drivers section Peculiarities
Intel downloadcenter.intel.com Drivers for AX200/AX210, 8265/8260 etc. Updated regularly.
Qualcomm Atheros support.athena-wireless.com Archive of drivers for older models (for example, AR9485).
Broadcom www.broadcom.com/support Drivers are often unpacked in the following format: .inf + .sys.
Realtek www.realtek.com/en/downloads The site loads slowly, but it has drivers even for rare chips.
Mediatek (Ralink) www.mediatek.com/products Drivers for adapters MT7921, RT3290 and others.

If the adapter manufacturer is unknown or its website is unavailable, use equipment ID database:

  • 🔍 Go to the website PCI Lookup or Device Hunt.
  • 📋 Enter Vendor ID And Device ID (For example, 168C 0036).
  • 📥 Download the driver from the official source using the search results.
📊 Where do you usually look for laptop drivers?
On the laptop manufacturer's website
On the website of the Wi-Fi adapter manufacturer
Via Windows Update
I use DriverPack Solution
Other

Attention! Avoid sites like driverpack.io or drp.suThey often install unnecessary software, and sometimes even malware. If you do use such services, be sure to uncheck all additional software during installation.

3. Installing the Wi-Fi driver in Windows 10 and 11: step-by-step instructions

Once the driver is downloaded, it needs to be installed correctly. Windows This can be done in several ways.

Method 1: Automatic installation via Device Manager

  1. Open device Manager (Win + X → Device Manager).
  2. Find your Wi-Fi adapter (it may be under "Other devices" with an exclamation mark).
  3. Right-click → “Update driver” → “Browse my computer for driver software”.
  4. Specify the folder where you downloaded the driver and follow the instructions.

Method 2: Manual installation via INF file

If the automatic installation did not work:

  1. Unzip the archive with the driver (if it is in the format .zip or .rar).
  2. In Device Manager, click on the adapter → “Update driver” → “Select driver from the list” → “Have disk”.
  3. Specify the path to the file .inf in the unpacked folder.

☑️ Check after driver installation

Completed: 0 / 4

If after installing the driver Wi-Fi still does not work:

  • 🔄 Restart your laptop.
  • 🔧 Check if the adapter is enabled in the BIOS (section Advanced → Wireless LAN).
  • 🛠️ Try rolling back the driver (in Device Manager → Properties → Driver → Roll Back Driver).

4. Features of installing Wi-Fi drivers on Linux and macOS

IN Linux And macOS The driver installation process is different from WindowsOpen source drivers are often used here, but sometimes proprietary ones have to be compiled.

🐧 For Linux (Ubuntu, Debian, Fedora, etc.)

Most Wi-Fi adapters are supported by the Linux kernel out of the box. If there are no networks:

  1. Update the system:
    sudo apt update && sudo apt upgrade
  2. Install branded drivers (for Broadcom, Realtek):
    sudo ubuntu-drivers autoinstall
  3. For adapters Realtek RTL8821CE or RTL8188EU manual compilation may be required:
    sudo apt install git dkms
    

    git clone https://github.com/lwfinger/rtl8188eu.git

    cd rtl8188eu

    make

    sudo make install

🍎 For macOS

IN macOS Wi-Fi drivers are usually built into the system. If problems occur after an update:

  • 🔄 Restart your laptop.
  • 🔧 Reset NVRAM:
    1. Shut down your Mac.
    2. Turn on and immediately hold down Option + Command + P + R for 20 seconds.
  • 📥 Install updates via System Settings → Software Update.
  • What should I do if the adapter is detected in Linux but does not connect to the network?

    Check if Wi-Fi is blocked programmatically by the command rfkill listIf next to wlan costs Soft blocked: yes, unlock with the command rfkill unblock wifi.

    Attention! IN Linux some adapters (eg Broadcom BCM4313) require disabling Secure Boot in the BIOS. Without it, the driver will not load.

    5. What to do if the driver is installed, but Wi-Fi doesn't work

    Situation: The driver is successfully installed, the adapter is detected, but the network connection fails. There could be various reasons, from incorrect settings to hardware issues.

    Check the following:

    • 📶 Make sure your router is turned on and distributing the network (try connecting from your phone).
    • 🔒 Check if you entered the wrong Wi-Fi password.
    • 🔄 Restart your router (turn it off for 30 seconds and turn it on again).
    • 🛠️ In Windows reset the TCP/IP stack:
      netsh int ip reset
      

      netsh winsock reset

    If the laptop sees the network but does not connect:

    • 🔧 Check your IP settings (it should be set to "Obtain automatically").
    • 📡 Try connecting to a different network (for example, from your phone in hotspot mode).
    • 🔄 Update your router's firmware (instructions are usually on the device's sticker).
    • Attention! If you recently updated your BIOS, it may have reset your Wi-Fi adapter settings. Go to your BIOS and check if this option is enabled. Wireless LAN or WLAN Radio.

      6. How to update your Wi-Fi driver to the latest version

      An outdated driver can cause connection issues, slow speeds, or frequent disconnects. It's important to update it regularly, especially if you notice:

      • 🐢 Slow internet with a good signal.
      • 🔄 Constant connection breaks.
      • 🚫 Unable to connect to networks Wi-Fi 6 (802.11ax).
      • Update methods:

        1. Via Device Manager:
          1. Right-click on the adapter → “Update driver” → “Search automatically”.
          2. If Windows It says the driver is up to date—this isn't always the case. Check the version manually.
        2. From the official website:
          1. Find the latest driver version for your model (see section 2).
          2. Uninstall the old driver through Programs and Features or device Manager.
          3. Install the new driver and restart your laptop.
        3. Via Windows Update:
          1. Open Settings → Update & Security → Windows Update.
          2. Click "Check for Updates". Sometimes Microsoft adds drivers to updates.

      Critical Information: Some adapters (eg. Intel AX200/AX210) require not only a driver update, but also the firmware for the module itself. It can be downloaded from the website. Intel in the "Firmware" section. Without this, Wi-Fi 6 may not function properly.

      7. Troubleshooting Wi-Fi drivers on older laptops

      If your laptop was manufactured before 2015, you may encounter the following:

      • 🖥️ The manufacturer no longer supports your model.
      • 🔧 Drivers are not compatible with Windows 10/11.
      • 📡 The adapter does not support modern standards Wi-Fi 5/6.

      What to do:

      • 🔍 Search for drivers by Vendor ID And Device ID (see section 1).
      • 📥 Try drivers from similar models (for example, for Dell Inspiron 1545 The driver from might be suitable Dell Vostro 1510, if they have the same Wi-Fi module).
      • 🛠️ Use it Windows 7/8 driver in compatibility mode:
        1. Right-click on the installation file → “Properties” → “Compatibility” tab.
        2. Check the box "Run in compatibility mode" and select Windows 7.
      • 🔄 If nothing helps, replace the Wi-Fi module with a modern one (for example, Intel AX200 or M.2 NGFF). It's inexpensive (from 1000 ₽), and the connection speed and stability will increase significantly.
      • Attention! On laptops Lenovo, HP And Dell older than 2012 maybe white list (whitelist) of allowed Wi-Fi modules in the BIOS. This means that after replacing the adapter, the laptop may not turn on or may not recognize the new module. Before purchasing, check compatibility on forums (e.g., ThinkWiki For Lenovo).

        8. Alternative ways to connect to the Internet if Wi-Fi doesn't work

        If you can't resolve the driver issue and need internet access urgently, try one of these methods:

        • 📱 USB tethering from phone:
          1. Connect your phone to your laptop via USB.
          2. In your phone settings, enable "Tethering" or "USB tethering."
          3. The laptop will receive Internet via the mobile network.
        • 🔌 Connection via cable (Ethernet):
          1. If the laptop does not have a port RJ-45, use USB-Ethernet adapter (costs ~500 ₽).
          2. Connect the laptop and the router with a cable.
      • 📡 External Wi-Fi adapter:
        1. Buy a USB adapter (such as TP-Link TL-WN823N or ASUS USB-AC56).
        2. Connect it to your laptop and install the driver from the disk or the manufacturer's website.

    These methods will help temporarily solve the problem, but they are not a substitute for a full repair or configuration of the main Wi-Fi adapter.

    FAQ: Frequently asked questions about Wi-Fi drivers for laptops

    Is it possible to use a driver from another laptop if the adapter models are the same?

    Yes, but only if:

    • 🖥️ Wi-Fi adapter models completely identical (check by Vendor ID And Device ID).
    • 📋 The operating systems are the same (for example, both laptops are on Windows 10 x64).
    • If the adapters are similar but not identical (e.g. Intel 8260 And Intel 8265), the driver may not work or cause errors.

    Why did Wi-Fi stop working after a Windows update?

    This is a typical problem when:

    • 🔄 Windows Update Automatically installed an incompatible driver.
    • 📥 The update reset the adapter settings.
    • Solution:

      1. Roll back the driver in Device Manager.
      2. Or download the latest version from the manufacturer's website and install it manually.
    How do I know if my laptop supports Wi-Fi 6 (802.11ax)?

    Check your adapter model:

    • 📋 Adapters with support Wi-Fi 6 usually have in the name AX (For example, Intel AX200, Qualcomm QCA6390).
    • 🔍 The adapter specifications on the manufacturer's website should indicate the standard 802.11ax.
    • If your adapter is older than 2019, it most likely only supports Wi-Fi 5 (802.11ac) or Wi-Fi 4 (802.11n).

    Is it possible to update the Wi-Fi driver on a laptop without internet access?

    Yes, there are two ways:

    1. Download the driver on another device and transfer it to your laptop via a flash drive.
    2. Use offline driver databases, For example, DriverPack Solution Offline (but be careful with additional software!).

    You can also connect to the Internet via cable or USB tethering, update the driver, and then disconnect the temporary connection.

    What should I do if my laptop starts to slow down after installing the driver?

    This may happen due to:

    • 🔧 Driver conflict (for example, if multiple versions are installed).
    • 📥 Incorrect driver version (for example, for Windows 7 on Windows 10).
    • 🛠️ A virus in the downloaded file (if the driver was downloaded from a dubious site).

    Solution:

    1. Uninstall the problematic driver through Programs and Features.
    2. Install the original version from the manufacturer's website.
    3. Check your laptop with an antivirus.