Where is the Wi-Fi driver stored in Windows 10 and how to update it: A complete guide

Losing Wi-Fi connection is one of the most annoying problems for Windows 10 users. A faulty or outdated wireless adapter driver is often the culprit. But before looking for a solution, it's important to understand Where is the Wi-Fi driver physically stored? in the system, how to find it and replace it if necessary. Unlike programs that are installed in Program Files, the drivers are integrated into the OS kernel and scattered across several system folders.

In this article, we will analyze all possible ways to localize the Wi-Fi driver: from the standard Device Manager to hidden system directories like C:\Windows\System32\DriverStoreYou will also learn how determine the exact model of the adapter (this is critical for downloading the correct driver), what commands will help extract information through PowerShell, and why a driver sometimes "disappears" after a Windows update. We'll pay special attention to cases where the system doesn't detect the network adapter at all—in this case, alternative recovery methods will be needed.

1. Where is the Wi-Fi driver stored in Windows 10: system folders

Drivers in Windows 10 aren't stored in one place—they're distributed across several directories, each with its own specific purpose. The main locations are:

  • 📁 DriverStore (C:\Windows\System32\DriverStore\FileRepository) - are stored here original copies all drivers installed via Windows Update or manually. The name of the Wi-Fi driver folder usually contains part of the adapter name (e.g. netwtw08.inf_amd64... for adapters Intel).
  • 📁 System32\drivers (C:\Windows\System32\drivers) - are located here working files drivers (with extension .sys), which are loaded at system startup. For Wi-Fi, this is most often netwtw08.sys (Intel), rtwlane.sys (Realtek) or bcmwl6.sys (Broadcom).
  • 📁 INF files (C:\Windows\inf) - here they lie configuration files drivers with extension .infThey describe how the OS should interact with the device. For Wi-Fi, look for files like oem*.inf or net*.inf.

It is important to understand that deleting files from these folders manually may lead to failure of the adapter. The system itself manages their integrity through a mechanism Driver StoreIf you want to remove the driver, use device Manager or utility pnputil.

2. How to find the Wi-Fi driver via Device Manager

device Manager — the easiest way to not only find the driver but also get information about the adapter model. To open it:

  1. Click Win + X and select device Manager.
  2. Expand the branch Network adapters.
  3. Find the device with the words Wireless, Wi-Fi, 802.11 or brand name (Intel, Realtek, Qualcomm Atheros).

Right click on the adapter and select Properties → DriverHere you will see:

  • 📅 Date of development And driver version.
  • 📄 Supplier (Microsoft, Intel, Realtek, etc.).
  • 🔧 Buttons Refresh, Roll back And Remove device.

On the tab Intelligence In the drop-down menu, select Equipment ID. Copy the first line from the list (starts with PCI\VEN_ or USB\VID_) - This unique identifier of your adapter, which will help you find the exact driver on the manufacturer's website.

📊 What brand of Wi-Fi adapter do you have?
Intel
Realtek
Qualcomm Atheros
Broadcom
MediaTek
Don't know
Another

3. Search for the Wi-Fi driver via the command line

If the graphical interface is not available (for example, due to a system crash), driver information can be obtained via PowerShell or Command lineHere are the key commands:

# Getting a list of all network adapters

Get-NetAdapter | Select Name, InterfaceDescription, DriverDescription

Detailed information about the driver for a specific adapter

Get-NetAdapter -Name "Wi-Fi" | Get-NetAdapterDriver

For the classic command line (cmd) use:

driverquery /v | find "Wi-Fi"

These commands will output:

  • 📌 Driver name (For example, netwtw08.sys).
  • 📌 Path to INF file (For example, C:\Windows\inf\oem25.inf).
  • 📌 Date and version.
What to do if the command does not find the adapter?

If the adapter is not displayed after running the commands, this may mean:

1. Adapter disabled in BIOS/UEFI (check your motherboard settings).

2. Device physically faulty (try connecting an external USB adapter).

3. Driver completely removed from the system (manual reinstallation is required).

4. How to determine the Wi-Fi adapter model if the driver is not installed

If Windows does not see the Wi-Fi adapter (in Device Manager is displayed "Unknown device" with an exclamation mark), the model can be determined in alternative ways:

  1. Through Equipment ID:
    • IN Device Manager Find an unknown device → Properties → Details → Hardware ID.
    • Copy the first line (eg. PCI\VEN_8086&DEV_2723).
    • Enter this code into a search engine or on a website PCI Lookup — the system will show the manufacturer and model of the chip.
  2. Physical examination (for PC):
    • Open the system case and find mini-PCIe or M.2 Wi-Fi card (usually near the RAM slots).
    • It should have a sticker with the model (for example, Intel Wireless-AC 9560).
  • Via BIOS/UEFI:
    • Restart your PC and enter the BIOS (usually the key Del, F2 or Esc).
    • Find the section Advanced → Onboard Devices or Wireless — the model may be indicated there.

    Copy Hardware ID from Device Manager|

    Check the sticker on the physical card (for PC)|

    Look in the BIOS in the Onboard Devices section|

    Use the HWiNFO utility (if the system boots)

    -->

    5. Where to download the Wi-Fi driver for Windows 10: official sources

    Never download drivers from untrustworthy websites - they may contain viruses or outdated versions. Here reliable sources:

    Adapter manufacturer Official website Support section
    Intel intel.ru Download Center
    Realtek realtek.com Network ICs
    Qualcomm Atheros qualcomm.com Wireless Connectivity
    Broadcom broadcom.com Support
    MediaTek mediatek.com Wireless

    If you don't know the manufacturer, use Equipment ID (see section 4) and search for the driver via:

    ⚠️ Attention: Drivers from the manufacturer's website laptop (HP, Lenovo, ASUS, etc.) are often better optimized than the universal ones from the chip's website. For example, for Lenovo ThinkPad download the driver from Lenovo Support, not with Intel.

    6. How to update or reinstall the Wi-Fi driver

    Once you've found the driver, you need to install it correctly. Here are step-by-step instructions for different scenarios:

    Method 1: Update via Device Manager

    1. Open device ManagerNetwork adapters.
    2. Right-click on the adapter → Update driver.
    3. Select Automatic search (Windows will try to find the driver through the Update Center).
    4. If the automatic search does not help, select Search for drivers on this computer and specify the path to the downloaded file.

    Method 2: Manual installation via INF file

    If the driver is downloaded as an archive with files .inf, .sys And .cat:

    1. Unzip the archive into a folder (for example, C:\WiFi_Driver).
    2. IN Device Manager select Update driver → Search this computer → Select driver from the list.
    3. Click Install from disk and specify the path to .inf-file.

    Method 3: Uninstall and clean install

    If the driver does not work correctly:

    1. IN Device Manager remove the adapter (right click → Remove device).
    2. Check the box Remove the driver software for this device (if any).
    3. Restart your PC - Windows will try to install the driver automatically.
    4. If the adapter does not appear, install the driver manually (see Method 2).
    ⚠️ Attention: After uninstalling the driver do not connect to the Internet via Ethernetuntil you install a new Wi-Fi driver. Windows may automatically download the wrong version through Windows Update.

    7. What to do if the Wi-Fi driver disappears after a Windows update

    A common problem: after a major Windows 10 update (for example, to version 22H2), the Wi-Fi driver disappears or is replaced by a universal one from Microsoft, which works unstable. Reasons:

    • 🔄 Windows automatically replaces productive driver for your "universal" one.
    • 🔄 New OS version not compatible with the old driver.
    • 🔄 Conflict with software manufacturer (for example, Intel PROSet).

    Solutions:

    1. Disable automatic driver updates:
      • Open gpedit.msc (Local Group Policy Editor).
      • Go to Computer Configuration → Administrative Templates → System → Device Installation → Device Installation Restrictions.
      • Enable the option Prevent installation of devices using drivers that match these device installation classes and add a class {4d36e972-e325-11ce-bfc1-08002be10318} (network adapters).
    2. Restore the old driver version:
      • IN Device Manager select Driver Properties → Roll Back Driver (if the button is active).
      • If rollback is not available, download the previous version from the manufacturer's website.
  • Remove conflicting software:
    • Remove programs like Intel PROSet, Realtek Wireless Utility through Control Panel → Programs and Features.
    • Reinstall the clean driver (without additional software).

    If the problem persists after every Windows update, consider the following option: deferred update (V Settings → Update & Security → Advanced options).

    FAQ: Frequently asked questions about Wi-Fi drivers in Windows 10

    🔹 Is it possible to copy a Wi-Fi driver from one PC to another?

    Yes, but only if the adapter models are identicalCopy the driver folder from C:\Windows\System32\DriverStore\FileRepository and install it through device Manager (See Section 6). Please note that the driver must be compatible with OS bit depth (x64 or x86).

    🔹 Why doesn't Wi-Fi turn on after installing the driver?

    The reasons may be different:

    • 🔌 The adapter is disabled by hardware. (check the Wi-Fi button on your laptop or BIOS settings).
    • ⚙️ WLAN service is disabled (run it through services.msc).
    • 🔄 Conflict with other software (for example, VPN or antiviruses like Kaspersky may block the network).

    Try it reboot your PC or run Network troubleshooting (right click on the Wi-Fi icon in the tray).

    🔹 How do I find out which Wi-Fi driver is best: from the manufacturer's website or through Windows Update?

    Usually driver from the adapter manufacturer's website (Intel, Realtek, etc.) works more stable than the universal one from Microsoft. However:

    • 🔹 For laptops It's better to get the driver from the manufacturer's website. laptop (HP, Lenovo, etc.) - it is optimized for a specific model.
    • 🔹 If you have self-assembled PC, download the driver from the manufacturer's website chip (Intel, Qualcomm).
    • 🔹 Drivers via Windows Update often outdated, but they pass Microsoft compatibility testing.
    🔹 Is it possible to roll back a Wi-Fi driver if the new one isn't working as well?

    Yes, if the previous driver version is saved in the system:

    1. Open device ManagerAdapter Properties → Driver.
    2. Click Roll back (the button is active only if there is a backup copy).
    3. If the button is inactive, download the older version from the manufacturer's website and install it manually.

    Windows stores backup copies of drivers in DriverStore, but only if they were installed through device Manager, not third-party installers.

    🔹 What should I do if Windows doesn't detect my Wi-Fi adapter at all?

    If the adapter is not displayed even as "Unknown device", check:

    • 🔌 Physical connection: For PCIe-card - check if it is firmly inserted into the slot; for USB adapters - try another port.
    • Nutrition: On some laptops, Wi-Fi turns off when the battery is low (check your power settings).
    • 🔧 BIOS/UEFI: Go to settings and make sure that the Wi-Fi adapter is not disabled (the option may be called Wireless LAN, WLAN or Onboard Wi-Fi).
    • 💻 Conflict with other equipment: Disconnect all USB devices and restart your PC.

    If the adapter is still not visible, it may be out of order — try connecting an external USB-Wi-Fi module for diagnostics.