How to Enable or Disable Network Adapters in Windows 11
This guide explains how to turn your network adapter on or off in Windows 11. A network adapter is the hardware inside your computer that lets you connect to the internet or a local network. Sometimes you need to turn this off to fix connection problems or to switch between different types of networks.
Why do this? Disabling an adapter helps when you are troubleshooting internet issues or if you want to force your computer to use a different connection, like switching from Wi-Fi to a wired cable.
What happens when done? Once disabled, that specific connection will stop working immediately. You will lose access to the internet through that adapter until you enable it again.
Comparison of Methods
| Method | Best For | Privileges Required |
|---|---|---|
| Settings | Quick toggling | Standard |
| Control Panel | Advanced configuration | Standard |
| Device Manager | Driver troubleshooting | Admin |
| Command Prompt | Automation/Scripts | Admin |
Using the Settings App
This is the easiest way to manage your connection.
- Open Settings by pressing the Windows key + I or searching for it in the Start menu.
- Click on the Network & internet tile.

- Click Advanced network settings at the bottom of the list.

- Find the adapter you want to change under Network adapters and click the Disable button.

Using the Control Panel
You can also use the traditional Control Panel to manage your adapters.
- Search for Control Panel in the Start menu and open it.

- Go to Network and Internet > Network and Sharing Center > Change adapter settings.

- Right-click your adapter and select Disable.

Using Device Manager
Note: This step requires admin privileges.
- Search for Device Manager in the Start menu and open it.

- Expand the Network adapters section.
- Right-click the adapter you want to turn off and choose Disable device.

Using Command Prompt (PowerShell Automation)
Note: This step requires admin privileges.
- Search for Command Prompt in the Start menu, right-click it, and select Run as administrator.

- To turn off the adapter, type the following command and press Enter:Code
netsh interface set interface "Wi-Fi" disable
- To turn it back on later, use this command:Code
netsh interface set interface "Wi-Fi" enable
- For PowerShell users, you can use: Code
Disable-NetAdapter -Name "Wi-Fi" -Confirm:$false
Troubleshooting and Error Resolution
If your network adapter is missing from Device Manager, click View > Show hidden devices. If you see a yellow exclamation mark, your driver may be corrupted. Right-click the device and select Update driver. If issues persist, use the Network Reset feature found in Settings > Network & internet > Advanced network settings > Network reset.
Summary
Managing your network adapters is a simple way to control how your computer connects to the world. You can use the Settings app, Control Panel, Device Manager, or Command Prompt to enable or disable them. Just be careful to choose the right adapter so you do not accidentally cut off your own internet access. If you get stuck, simply enable the adapter again or restart your computer to restore your connection.
Why does my network adapter disable itself automatically?
This often happens due to power management settings. Windows may turn off the device to save power. To fix this, go to Device Manager, right-click your adapter, select Properties, and uncheck ‘Allow the computer to turn off this device to save power’ under the Power Management tab.
Will disabling my network adapter delete my saved Wi-Fi passwords?
No, disabling a network adapter does not delete your saved Wi-Fi passwords or network profiles. It simply stops the hardware from communicating with the network. Once you re-enable the adapter, your computer will automatically reconnect to your saved networks as if nothing happened.
Was this guide helpful?
Leave a Reply Cancel reply