When Wi-Fi on a laptop or PC suddenly stops working, the first thought is to update or reinstall the adapter driver. But how do you know you're downloading the right thing? Wi-Fi driver There's no universal "face": its appearance depends on the adapter manufacturer, operating system, and even the distribution method. In this article, we'll look at what drivers for the most popular Wi-Fi modules look like, where to officially download them, and what to look for to avoid installing a virus instead of a driver.
You might be surprised, but a driver is not always an executable file with an extension .exe. For Linux These can be sources or packages in repositories, for macOS — files with the extension .pkg, and in Windows — archives with .inf-files. We'll show actual screenshots of installation interfaces, example file names, and even break down what the driver looks like in Device Manager After installation. If you've ever found yourself lost trying to find the right driver, this article will help you avoid common mistakes.
1. What does a Wi-Fi driver for Windows look like: formats and appearance
IN Windows Drivers for Wi-Fi adapters are most often distributed in three formats:
- 📁 EXE installer - a classic file with a graphical interface (for example,
WiFi_Driver_Setup_v10.0.0.34.exe). Typically weighs 10–50 MB and contains an installation wizard with the manufacturer's logo. - 🗃️ ZIP/RAR archive — folder with files
.inf,.sys,.catSuch drivers are installed manually through device Manager. - 🖥️ MSI package - used for mass deployment in corporate networks (e.g.
Intel_WiFi_22.100.0.msi).
An example of what it looks like EXE installer from Intel:
Please note:
- 🔹 Manufacturer's logo in the upper left corner (here - Intel).
- 🔹 Driver version (for example, 22.100.0 - this is critical for compatibility with your OS).
- 🔹 Availability of option
Custom Install(allows you to select components).
If you downloaded the archive, its contents will look like this:
WiFi_Driver_v6.3.2/
├── netwsw04.inf (configuration file)
├── netwsw04.sys (system driver)
├── netwsw04.cat (digital signature)
└── Readme.txt (instructions)
Attention! File .inf should contain the name of your adapter. Open it with Notepad and find the line %DeviceDescription% - there will be a model (for example, Qualcomm Atheros QCA61x4).
2. Drivers for macOS: where to look and how to distinguish them from counterfeits
On Mac Wi-Fi drivers are installed automatically via Software update, but sometimes manual installation is required—for example, for external USB adapters. Official drivers are distributed in the following format: .pkg (For example, RTL88x2BU_WiFi_Driver_v1.0.pkg).
Signs original driver for macOS:
- 🍎 Expansion
.pkg(Not.dmgor.app!). - 🔒 Developer's digital signature (verified via
Context menu → Details). - 📄 File availability
ReadMe.rtfwith instructions in English.
⚠️ Attention: In macOS, drivers for uncertified adapters (e.g., Realtek RTL8188EU) may require SIP shutdown (System Integrity Protection). This is risky—after such intervention, the system becomes vulnerable to viruses. Before installation, check the adapter's compatibility on the manufacturer's website.
3. Wi-Fi Drivers for Linux: Source Code vs. Ready-Made Packages
IN Linux Wi-Fi drivers are divided into two categories:
- Built into the kernel — supported out of the box (for example, chip-based adapters) Intel or Atheros).
- Proprietary — require manual installation (for example, for Broadcom BCM43xx or Realtek RTL88x2BU).
If your adapter is not detected, check its model using the command:
lspci -knn | grep -iA3 net
or for USB adapters:
lsusb
Example output for the adapter TP-Link Archer T2U:
Bus 001 Device 003: ID 2357:010c TP-Link 802.11ac NIC
Next, we search for the driver by code. 2357:010c (Here 2357 — vendor ID, 010c — product ID). For Linux, the driver might look like this:
- 📂 Source code on GitHub (folder with files
.cAndMakefile). - 📦 DEB/RPM package (For example,
rtl88x2bu-dkms_5.6.1_amd64.deb). - 🐧 Kernel module (installed via
dkms).
⚠️ Attention: Installing drivers from source requires compilation. If the system does not have build-essential And linux-headers, the process will end with an error. For Ubuntu/Debian execute:
sudo apt install build-essential dkms linux-headers-$(uname -r)
4. Where to download the official Wi-Fi driver: trusted sources
Never download drivers from torrents or suspicious websites! Official sources:
| Adapter manufacturer | Link to the support section | Typical file format |
|---|---|---|
| Intel | downloadcenter.intel.com |
.exe or .zip (with signature Intel Corporation) |
| Qualcomm Atheros | qualcomm.com/support |
.inf in an archive (often without an EXE installer) |
| Realtek | realtek.com/en/downloads |
.exe (sometimes with Chinese characters in the name) |
| Broadcom | broadcom.com/support |
.tar.gz (sources for Linux) |
| TP-Link | tp-link.com/support |
.exe or .pkg (for macOS) |
🔍 How to verify the authenticity of a file?
- Check it out checksum (MD5/SHA1) with the official page.
- Check it out digital signature (in file properties →
Digital signatures). - Use
VirusTotalto scan for viruses.
Downloaded from the manufacturer's official website|
The checksum matches the one indicated on the website|
The file has a digital signature|
The file name contains the adapter model and driver version-->
5. What does the Wi-Fi driver look like in Windows Device Manager?
After installation, the driver is displayed in Device Manager (devmgmt.msc) in the section Network adaptersExample for the adapter Intel Wi-Fi 6 AX200:
What to look out for:
- 🔧 The adapter name must match your model (for example, Intel(R) Wi-Fi 6 AX200 160MHz, and not
Unknown Device). - 📅 Tab
Driver→DateAndVersionmust be relevant. - ✅ In
Device statusshould beThe device is working properly..
If instead of the adapter name you see Network controller with an exclamation mark, it means:
⚠️ Attention: The driver is not installed or is installed incorrectly. In this case:
- Right-click on the device →
Update driver→Search for drivers on this computer. - Specify the folder with the unpacked driver (where it is located)
.inf-file). - If it doesn't help, remove the device (
Remove device) and restart your PC.
6. Common errors when installing Wi-Fi drivers
Even experienced users sometimes encounter problems. Let's look at the most common ones:
| Error | Cause | Solution |
|---|---|---|
This device cannot start (Code 10) |
Incompatible driver version or conflict with other software. | Uninstall the current driver via device Manager and install the version from the manufacturer's website. |
There is no suitable driver when installed manually |
.inf-the file is not suitable for your adapter model. |
Check the exact model name in Device information (tab In detail → Equipment ID). |
| Wi-Fi connects, but the internet doesn't work. | Driver missing for security protocol (for example, WPA3). | Update your driver to the latest version or roll back to a stable one. |
Blue Screen of Death (BSOD) after installation |
Conflict with antivirus or damaged driver file. | Boot into Safe mode and uninstall the driver. Download it again from the official website. |
💡 Helpful tip: If your Wi-Fi performance deteriorates after updating your driver (for example, the connection drops), roll back to the previous version:
- Open
device Manager→ find your adapter. - RMB →
Properties→ tabDriver→Roll back.
What should I do if the driver is installed, but Wi-Fi doesn't pick up networks?
This may be due to a disabled radio module (especially on laptops with a button) Airplane Mode). Check:
1. Physical Wi-Fi button/switch on the body.
2. Keyboard shortcut (eg. Fn + F2).
3. BIOS settings (Wireless LAN Support should be Enabled).
If the problem persists, try resetting the network settings using the command:
netsh winsock reset
netsh int ip reset
7. Drivers for USB Wi-Fi adapters: installation features
USB adapters (eg TP-Link TL-WN823N or ASUS USB-AC56) often require separate installation of drivers, even if the system recognizes them as Network controller. Peculiarities:
- 🔌 The driver can be supplied on CD included, but it is better to download the latest version from the website.
- 🔄 Some adapters (for example, on a chip Realtek RTL8188EU) require reconnections after installing the driver.
- 🚫 In Windows 11 old adapters (eg D-Link DWA-125) may not work due to lack of support WPA3.
Example of driver installation for TP-Link Archer T2U:
- Downloading
TP-Link_Archer_T2U_Driver_v1.0.1.5.exefrom the official website. - We connect the adapter to the USB port (important: Some adapters are not detected in USB 3.0 - try USB 2.0 port).
- Run the installer and follow the instructions.
- After installation, restart your PC.
⚠️ Attention: Cheap Chinese adapters (for example, with AliExpress) are often supplied with counterfeit chips. If the driver from the official website doesn't work, check the real chipset via Equipment ID V Device Manager.
8. How to update your Wi-Fi driver automatically
Manually searching for drivers isn't always convenient. Alternative methods:
- 🪟 Windows Update:
- Open
Settings → Update & Security → Windows Update. - Click
Checking for updates. - If an update for the adapter is available, it will be installed automatically.
- Open
- 🤖 Third-party programs (For example, Driver Booster, Snappy Driver Installer):
⚠️ Attention: These programs may install unofficial or outdated driver versions. Use them only if you can't find the driver manually.
- 🐧 For Linux:
sudo apt update && sudo apt upgrade # Debian/Ubuntusudo dnf upgrade # Fedora - Click
Win + R, entermsinfo32. - Go to
Components → Network → Adapter. - Find the line with the name (for example, Qualcomm Atheros QCA9377).
- Open
device Manager. - Find the adapter with the exclamation mark.
- RMB →
Update driver→Search for drivers on this computer. - Specify the path to the folder with the driver.
- Roll back to the previous version (in
Device Manager). - Uninstall the current driver and install stable version from the manufacturer's website.
- Check your power settings:
Device Manager→Adapter properties→Power managementuncheck the boxAllow the computer to turn off this device to save power. - Check it out driver archive on the manufacturer's website (section
Legacy ProductsorOld Versions). - Use driver packs (For example, SlimDrivers or DriverPack Solution), but download them only from official sources.
- For Windows 10/11 try installing the driver in compatibility mode Windows 7.
- Connection speed: must comply with the adapter standard (e.g.
866 MbpsFor Wi-Fi 5). - Connection stability: perform a ping test (
ping 8.8.8.8 -t) - there should be no packet loss. - Adapter temperature: If the laptop is overheating, the driver may be dropping the connection. Check through HWMonitor.
- Event log: open
Event Viewer → Windows Logs → Systemand find errors with the sourceNetwtw04(For Intel) orRtl8192ce(For Realtek).
📌 Important: Automatic update via Windows Update doesn't always provide the latest version. For example, for adapters Intel Wi-Fi 6 It's better to download the driver from the website. Intel, as Microsoft often delays updates.
FAQ: Frequently Asked Questions about Wi-Fi Drivers
🔹 How do I find out the model of my Wi-Fi adapter?
In Windows:
In Linux: run the command lspci -knn | grep -iA3 net.
On macOS: open About This Mac → System Report → Network.
🔹 Is it possible to install the Wi-Fi driver without internet access?
Yes. Download the driver on another device, transfer it to a flash drive, and install it manually:
For Linux download .deb/.rpm-package or sources.
🔹 Why did my Wi-Fi performance worsen after updating my driver?
This is a typical problem when updating to beta versions or faulty drivers. Solutions:
🔹 Where can I find a driver for an old Wi-Fi adapter (e.g., from 2010)?summary>
For legacy adapters (eg. D-Link DWA-125 or Belkin F5D8053):
⚠️ Attention: Old adapters (before standard 802.11n) may not support modern security protocols (for example, WPA3). In this case, you will have to use WPA2 or upgrade the hardware.
🔹 How can I check if my Wi-Fi driver is working properly?
Please check the following parameters: