How to reset a laptop's Wi-Fi adapter: all the methods

The internet suddenly went down, but everything works on other devices? Most likely, the problem is Wi-Fi adapter your laptop. Restarting the network adapter is the first step to restoring the connection, and there are several ways to do this without a full system reboot. In 80% of cases, this helps resolve issues caused by driver errors, IP address conflicts, or temporary module malfunctions.

But why reboot the adapter and not the entire laptop? A full reboot takes longer, and in most cases, resetting just the network hardware is sufficient. This is especially important for users who work with important documents or running applications—there's no need to save data or close programs. Below, we'll cover all the available methods, from the simplest to the most advanced, including commands for Windows And macOS, and we will also consider what to do if the adapter refuses to turn on after a reboot.

Modern laptops are equipped with built-in Wi-Fi modules from Intel, Qualcomm Atheros, Broadcom or RealtekDespite the differences in hardware, the principles of controlling the adapters are universal. However, there are some nuances: for example, on some models Lenovo or HP Additional software from the manufacturer may be required for the function keys to function correctly. We'll also mention this below.

1. Restart the adapter via "Network Settings" (Windows)

The safest and most universal method is to use the operating system's built-in tools. This works for all versions. Windows from 7 to 11, and does not require administrator rights (except for some commands).

To disable and re-enable the Wi-Fi adapter via the interface:

  1. Click Win + Ito open Windows Settings.
  2. Go to the section Network and InternetWi-Fi.
  3. On the right side of the window, find the switch Wi-Fi and turn it off.
  4. Wait 10-15 seconds and turn it back on.

If after this the Internet does not appear, try an alternative route through Control Panel:

  1. Open Control Panel (can be found through the system search).
  2. Select Network and InternetNetwork and Sharing Center.
  3. In the left menu, click Changing adapter settings.
  4. Find the icon Wireless network (or Wi-Fi), right-click and select Disable.
  5. After 10 seconds, repeat the action, but select Turn on.
📊 Which adapter reset method do you use most often?
Via "Network Settings"
Via the Control Panel
With a button on the body
Command line
Another

Why doesn't this method always work? In some cases, the adapter may "freeze" at the driver level, and disabling it software-wise via the interface will have no effect. In such cases, the only solution is to physically disconnect it (if the module is removable) or reboot it via device Manager.

2. Using function keys (hot keys)

Most laptops are equipped with function keys for quick Wi-Fi management. Typically, it's a combination of Fn + one of the F1–F12 keysThe exact combination depends on the model and manufacturer:

  • 💻 ASUS: Fn + F2 (on some models there is a separate button with an antenna)
  • 💻 Lenovo: Fn + F5 or Fn + F7 (depending on the series)
  • 💻 HP: Fn + F12 (sometimes you need to hold Fn longer than 1 second)
  • 💻 Acer: Fn + F3 or a separate switch on the body
  • 💻 Dell: Fn + PrtSc or Fn + F2

If the combination does not work, check:

  1. Is the software installed? Hotkey Utility or ATK Package (For ASUS).
  2. Is the key function disabled in BIOS (less common, but it does happen).
  3. Does the key conflict with other programs (for example, with utilities for controlling the backlight).

Attention! On models with Windows 11 Function keys may work differently due to changes in how hotkeys are handled. If the combination doesn't work, try pressing Fn + Escto switch the key mode (from multimedia to functional).

3. Restart via Device Manager

If the adapter is stuck at the driver level, it can be restarted via device ManagerThis method is effective when Wi-Fi disappears after waking up from sleep or hibernation.

Instructions:

  1. Click Win + X and select device Manager.
  2. Expand the branch Network adapters.
  3. Find the device with the names Wireless, Wi-Fi, 802.11 or the manufacturer's name (Intel Wireless-AC, Qualcomm Atheros etc.).
  4. Right click and select Disconnect the device.
  5. Confirm the action and wait 5-10 seconds.
  6. Repeat step 4 but select Activate the device.

If after turning on the adapter is not detected or is displayed with an exclamation mark, try updating the driver:

  1. In the same menu, select Update driver.
  2. Click Automatic search.
  3. If the system does not find updates, download the driver from the laptop manufacturer's website (not from public repositories!).
What should I do if the adapter has disappeared from the Device Manager?

If the Wi-Fi module is not displayed in the list, this may mean:

- Physical disconnection (on some laptops the module is connected via a connector) M.2 and can move away).

- Problems with BIOS (less common, but occurs after updates).

- Conflict with other equipment (for example, with a Bluetooth module, if it is combined).

In this case, try:

1. Restart the laptop while holding down the key Shift (will perform a clean boot).

2. Reset BIOS to factory settings.

3. Check the module connection (disassembly required).

Important! On laptops with dual-band adapters (supporting 2.4 GHz And 5 GHz) After rebooting, the network priority may be reset. If the internet doesn't appear, check the frequency band your laptop is connected to—manually reconnecting to a different frequency can sometimes help.

4. Command line: Quick reboot of the adapter

For experienced users or those who prefer automation, the method through Command line (CMD). This method allows you to restart the adapter without unnecessary clicks and is useful for creating scripts.

Open CMD as administrator and run the commands in order:

netsh interface set interface "Wireless Network" disable

timeout /t 5

netsh interface set interface "Wireless Network" enable

If your adapter name is different (eg. Wi-Fi or Wireless Network Connection), clarify it like this:

  1. Enter the command netsh interface show interface.
  2. Find the line with the type in the list Dedicated and condition Connected/Disconnected.
  3. Copy the adapter name (in quotation marks) and substitute it into the first command.

For Windows 11 A slightly different syntax may be required:

netsh interface set interface "Wi-Fi" admin=disable

timeout /t 3

netsh interface set interface "Wi-Fi" admin=enable

Make sure CMD is running as administrator.

Check that the adapter name is correct.

Close programs that use the network (torrents, cloud services)

Disable VPN if active-->

Attention! If after executing the commands the adapter does not turn on, but in Device Manager an error code appeared 10 or 43, this indicates a driver issue. In this case, reinstalling the driver will help.

5. Restart the adapter on macOS

On laptops MacBook The process for rebooting a Wi-Fi module is different. There's no "Device Manager" here, but there are its own tools.

Method 1: Via the Wi-Fi menu

  1. Click on the icon Wi-Fi in the upper right corner.
  2. Select Turn off Wi-Fi.
  3. Wait 10 seconds and turn it back on.

Method 2: Through Terminal (analogue CMD V Windows)

  1. Open Terminal (Command + Space → enter Terminal).
  2. Run the command:
    sudo ifconfig en0 down && sudo ifconfig en0 up

    (If en0 didn't work, try en1 - specify the interface name with the command networksetup -listallhardwareports).

  3. Enter the administrator password (characters will not be displayed).

Method 3: Reset network settings (if the adapter does not turn on)

  1. Open Terminal.
  2. Perform in order:
    sudo networksetup -setairportpower en0 off
    

    sudo networksetup -setairportpower en0 on

    sudo networksetup -renewdhcp en0

Note for MacBook with a chip Apple M1/M2: On newer models, the Wi-Fi module is integrated into the processor, and rebooting it can take up to 20 seconds. If the internet doesn't return after following these instructions, try restarting the laptop—this often resolves performance issues. Unified Memory Architecture.

6. Hard reset: removing the module (for advanced users)

If software methods did not help, and the adapter still does not work, there remains physical reboot — removing and reinstalling the module. This method is only suitable for removable Wi-Fi cards (most often found in laptops) Dell, HP or older models Lenovo).

What you will need:

  • 🔧 Screwdriver (usually Phillips #0 or #1).
  • 🧲 Anti-static wristband (optional, but recommended).
  • 📸 Camera (to photograph the location of the antennas).

Procedure:

  1. Turn off your laptop and disconnect the charger.
  2. Turn the laptop over and remove the back cover (on some models, you only need to unscrew one screw in the RAM compartment).
  3. Find the Wi-Fi module - usually it's a small board with two antenna wires (UX40 or IPEX connectors).
  4. Carefully disconnect the antennas, then remove the module from the slot. M.2 or mini-PCIe.
  5. Wait 30 seconds and reinstall the module (make sure the contacts are clean).
  6. Connect the antennas and assemble the laptop.

⚠️ Attention! On laptops with white-list in BIOS (for example, HP EliteBook or Dell LatitudeInstalling a non-original Wi-Fi module may block the boot process. Before replacing, check compatibility on the manufacturer's forums.

7. Diagnostics after rebooting the adapter

After restarting the adapter, check the following settings to ensure it is working properly:

Parameter How to check Normal value
Adapter status IN Device Manager (no exclamation mark) This device is working properly.
IP address Team ipconfig /all V CMD 192.168.x.x or 10.0.x.x (Not 169.254.x.x!)
Connection speed In the network properties (click on the Wi-Fi icon in the tray) Corresponds to the tariff (for example, 866 Mbps For 802.11ac)
Signal level IN ParametersWi-FiManaging known networks More 70% (or -70 dBm in utilities like NetSpot)
DNS server Team nslookup ya.ru Reply from 87.250.250.242 or another public DNS

If after rebooting the adapter:

  • 🌐 There is internet, but the pages don't load. → Check DNS (try 8.8.8.8 from Google).
  • 🔌 The network connects, but there is no internet access. → Reboot your router.
  • 🚫 The adapter turns on but immediately turns off. → Driver or power supply problem (check power settings in Control Panel → Power Options).

⚠️ Attention! If after all the manipulations the adapter still does not work, and in Windows Event Log (chapter System) errors with code appear 7000 or 7026This may indicate a hardware failure. In this case, contact a service center—attempting to repair the device yourself could make the problem worse.

FAQ: Frequently asked questions about resetting your Wi-Fi adapter

Is it possible to reset the adapter on a laptop without administrator rights?

Yes, but with limitations. Through the interface. Windows settings or function keys, rebooting is possible without admin rights. However, for the command line (netsh) and changes in Device Manager Administrator rights are required.

Why does my internet speed drop after rebooting my adapter?

This may be due to:

  • Automatic connection to a congested channel 2.4 GHz (try to select manually 5 GHz).
  • Resetting QoS parameters (if you are using gaming routers like ASUS RT-AX88U).
  • Conflict with background updates (check Windows Update).

Solution: Reconnect to the network manually or reset the adapter settings using the command netsh int ip reset.

How to reset the Wi-Fi adapter on a Linux laptop (Ubuntu, Mint)?

On most distributions, use the commands:

sudo ip link set wlo1 down # disable (replace wlo1 with your interface)

sudo ip link set wlo1 up # enable

To find out the interface name, run ip a or iwconfig.

What should I do if the adapter is no longer detected after a Windows update?

This is a typical problem when upgrading to new versions. Windows 10/11Solutions:

  1. Roll back the driver via device Manager (tab DriverRoll back).
  2. Install the driver manually from the laptop manufacturer's website (do not use Update driver in Windows - it often installs incompatible versions).
  3. If the adapter has disappeared completely, check if it is disabled in the BIOS (section AdvancedOnboard Devices).
Can frequently rebooting the adapter damage it?

No, resetting the adapter software does not cause any damage to the hardware. However, physically removing the module (if you do so) may result in:

  • Damage to the connector M.2 if removed carelessly.
  • Broken antenna wires (especially on laptops with thin cases).
  • Static discharge if you do not use an antistatic wrist strap.

Recommendation: Use physical reboot only in extreme cases.