How to Completely Remove Wi-Fi Drivers from a Laptop: 5 Proven Methods

Wi-Fi connection issues on a laptop are often resolved by reinstalling the network adapter driver. But what if a standard update doesn't help, and the system stubbornly uses an old or corrupted version? Uninstalling the Wi-Fi driver — a radical yet effective method that helps in 87% of cases of unstable connections. However, incorrect actions can lead to a complete loss of network functionality or hardware conflict.

In this article you will find 5 ways to uninstall a driver — from standard Windows tools to advanced registry cleaning methods. We'll discuss how to avoid common mistakes (such as deleting the wrong device), what to do if Wi-Fi disappears from the system after uninstalling, and how to restore the adapter's functionality. We'll pay special attention to laptops with two network cards (Wi-Fi + Bluetooth), where incorrect manipulations can disable both functions.

Warning for laptop owners Lenovo, HP And Dell: some models use combination drivers for Wi-Fi and Bluetooth. Removing them may disable your wireless mouse or headphones. Before starting work, check the adapter model in Device Manager — more details on this in the section on equipment identification.

📊 What is the brand of your laptop?
ASUS
Lenovo
HP
Acer
Dell
Apple
Another

1. Preparation: How to check the current Wi-Fi driver

Before you uninstall the driver, you need to accurately identify the model of the network adapterThis will help prevent the installation of incompatible software after uninstallation. There are three reliable ways to obtain this information:

Method 1: Via Device Manager

  1. Click Win + X and select device Manager.
  2. Expand the branch Network adapters.
  3. Find the device with the words Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4).
  4. Right click → Properties → tab Intelligence.
  5. From the drop-down menu, select Equipment ID - copy the first line (starts with PCI\VEN_).

Method 2: Via the command line

wmic nic where "NetEnabled='true'" get Name, Manufacturer, DriverVersion

This command will list all active network devices, including their manufacturer and driver version. Look for the line mentioning Wi-Fi.

Method 3: Using a utility HWiNFO HWiNFO — a free program that provides detailed information about all laptop components. After installation:

  1. Run the utility and select Summary-Only.
  2. In the section Network Find your wireless adapter.
  3. Pay attention to the fields Device ID And Driver Version.

2. Method 1: Uninstall the driver via Device Manager

The safest method that suits most users. Advantage: Windows will automatically install the basic version of the driver after reboot (if the adapter is supported by the system).

Step-by-step instructions:

  1. Open device Manager (Win + X → Device Manager).
  2. Expand the branch Network adapters.
  3. Find your Wi-Fi adapter (see section 1 on identification).
  4. Right click → Remove device.
  5. In the window that appears, check the box Remove the driver software for this device (this is critical!).
  6. Confirm the action and restart the laptop.

After restarting, Windows will attempt to install the driver automatically. If this doesn't happen:

  • 🔍 Check your internet connection via Ethernet or mobile hotspot.
  • 🖥️ Go to Settings → Update & Security → Windows Update and press Checking for updates.
  • 📥 If the automatic installation did not work, download the driver from official website of the laptop manufacturer (not from third-party resources!).

⚠️

Attention: On some laptops HP And Dell After uninstalling the Wi-Fi driver, Bluetooth may also disappear. This is due to the use of combined chips (for example, Intel AX201 or Broadcom BCM4352). In this case, you will have to install both drivers again.

Download the latest driver from the manufacturer's website|Create a system restore point|Connect your laptop to the Internet via cable|Write down the adapter model-->

3. Method 2: Complete removal with registry cleaning

If the standard removal did not help (for example, after rebooting the old driver was restored), you will have to manually clear registry entriesThis method requires caution—registry errors can lead to system instability.

Instructions:

  1. Uninstall the driver via Device Manager (as in Method 1).
  2. Click Win + R, enter regedit and confirm.
  3. Follow the path:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}

    (this section is for all network adapters).

  4. Inside there will be folders with the following names: 0000, 0001 etc. Open each one and find the parameter DriverDesc — its value must match the name of your Wi-Fi adapter.
  5. Delete the entire folder with the found adapter (for example, 0005).
  6. Restart your laptop.

⚠️

Attention: Before editing the registry be sure to back it upFor this purpose, RegEdit select File → Export and save the file to your desktop. If something goes wrong, you can restore the registry by double-clicking the saved file.

After cleaning the registry, install the driver manually:

  • 📁 Download the driver archive from the manufacturer's website.
  • 📂 Unzip it into a folder (for example, C:\Drivers\WiFi).
  • 🖱️ In Device Manager, click Update Driver → Browse my computer for driver software and specify the path to the folder.

4. Method 3: Removing via the command line (DISM)

Tool DISM (Deployment Image Servicing and Management) allows you to manage drivers at the system image level. This method is useful if the driver is embedded in Windows and cannot be removed using standard methods.

Commands for removal:

dism /online /get-drivers /format:table | find "Wi-Fi"

This command will list all drivers mentioning Wi-Fi. Find the line with your adapter and note the value in the column. Published Name (For example, oem12.inf).

Now remove the driver:

dism /online /remove-driver /driver:oem12.inf /force

(replace oem12.inf to your value).

After running the command, restart your laptop. If the Wi-Fi adapter disappears from Device Manager, reinstall the driver.

⚠️

Attention: Team /force forcefully removes the driver, even if it is in use by the system. This may lead to loss of network connection before reinstalling the driverDo not interrupt the command execution process!

5. Method 4: Using third-party utilities

If manual methods seem complicated, you can use specialized programs. They automate the removal process and often find "forgotten" drivers that don't appear in Device Manager.

Top 3 Driver Removal Utilities:

Program Peculiarities Download link
Display Driver Uninstaller (DDU) Initially for video drivers, but also removes network drivers. Runs in safe mode. Official website Wagnardsoft
Driver Fusion A paid utility with a free trial. Cleans residual driver files. Website TreeCardinal
IObit Driver Booster Can remove and update drivers. The free version has limited functionality. Official website IObit

Instructions for Display Driver Uninstaller (DDU):

  1. Download and install the program.
  2. Boot your laptop into safe mode (press Win + R, enter msconfig, go to the tab Loading and mark Safe mode).
  3. Launch DDU and select Network in the drop-down menu.
  4. Find your Wi-Fi adapter in the list and click Clean and restart.

What should I do if Wi-Fi doesn't work after using DDU?

If the adapter has disappeared from Device Manager, try:

1. Install the driver manually (download it in advance to another PC).

2. Check if the adapter is disabled by a hardware button (on some laptops Lenovo And ASUS there is a physical Wi-Fi switch).

3. Update your laptop's BIOS - sometimes this solves hardware recognition issues.

6. Method 5: Removing via PowerShell (for advanced users)

PowerShell allows you to manage drivers using cmdlets. This method is suitable for automation or when other methods fail.

Commands for removal:

  1. Run PowerShell as administrator (Win + X → Windows PowerShell (Administrator)).
  2. List network adapters:
    Get-NetAdapter | Select Name, InterfaceDescription, DriverVersion
  3. Find your Wi-Fi adapter in the speaker Name (For example, Wi-Fi or Wireless network).
  4. Uninstall the driver:
    pnputil /delete-driver oem12.inf /uninstall /force

    (replace oem12.inf to the name of your driver's INF file, which can be found in C:\Windows\System32\DriverStore\FileRepository).

To find the exact name of an INF file, use the command:

pnputil /enum-drivers | find "Wi-Fi"

7. What should I do if Wi-Fi doesn't work after deleting?

If after all these steps the Wi-Fi adapter is not detected or does not connect to networks, follow these steps:

Checking hardware switches

  • 🔄 On some laptops (for example, Lenovo ThinkPad or HP EliteBook) There's a physical Wi-Fi switch on the case. Make sure it's on.
  • 🔑 Check the keyboard shortcut to turn on Wi-Fi (usually Fn + F2, Fn + F12 or a special button with an antenna).

Checking in BIOS/UEFI

  1. Restart your laptop and enter the BIOS (usually the key F2, Del or Esc when loading).
  2. Find the section Advanced or Configuration.
  3. Make sure the parameter Wireless LAN or Wi-Fi included (Enabled).

Manual driver installation

  • 📥 Download the driver from the official website of the laptop manufacturer (do not use driver packs like DriverPack Solution - they often install incompatible versions).
  • 📁 Unzip the archive and run the file setup.exe or install.bat.
  • 🔄 If the installation does not start, update the driver through Device Manager by specifying the folder with the unpacked files.

System Restore

If serious problems arise after removing the driver (for example, the laptop won't boot), use a restore point:

  1. Boot into safe mode.
  2. Click Win + R, enter rstrui and follow the instructions of the recovery wizard.
  3. Select the point created before the driver was uninstalled.

⚠️

Attention: If the Wi-Fi adapter is not detected even after installing the driver, it is possible hardware failureOn laptops ASUS And Acer A common problem is antenna cables becoming disconnected from the adapter connectors. This will require disassembling the device.

FAQ: Frequently asked questions about uninstalling Wi-Fi drivers

Is it possible to uninstall a Wi-Fi driver without an internet connection?

Yes, but you'll need to download the new driver to another computer and transfer it to your laptop via a flash drive or external drive. After uninstalling the driver, install it manually through Device Manager, specifying the path to the downloaded files.

Why does Windows install an older version after uninstalling a driver?

Windows stores copies of drivers in a folder DriverStoreTo avoid this, use DISM or DDU for a complete cleanup. Also, check if automatic driver updates are enabled in Settings → Update & Security → Advanced options → Driver Updates.

How do I know which driver I need for my Wi-Fi adapter?

Use Equipment ID (See Section 1) Copy the first line from the adapter properties (e.g. PCI\VEN_8086&DEV_2723) and find the driver using this code on the websites:

  • Intel: downloadcenter.intel.com
  • Qualcomm/Atheros: support.qualcomm.com
  • Broadcom: www.broadcom.com/support

Or enter the ID into a search engine with a request driver for PCI\VEN_8086&DEV_2723.

What should I do if Bluetooth disappears after uninstalling the driver?

This means that your laptop is using combination adapter (Wi-Fi + Bluetooth). Install both drivers from the manufacturer's official website. For example, for Intel AX200 you need to download the package Wi-Fi + Bluetooth.

Is it possible to uninstall the Wi-Fi driver on a MacBook?

On laptops Apple Drivers are built into macOS and cannot be removed using standard methods. If Wi-Fi isn't working, try:

  1. Reset NVRAM (Cmd + Option + P + R when loading).
  2. Update macOS to the latest version.
  3. Reset SMC (for Intel-Mac: turn off, hold down Shift + Control + Option + power button for 10 seconds).

Manually removing drivers on Mac is not supported and may result in system inoperability.