/
/

How to Enable or Disable Network Adapters in Windows

by Mauro Mendoza, IT Technical Writer
How to Enable or Disable Network Adapters in Windows blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

Key Points

  • Use Windows Settings to toggle adapters: press Win + I → Network & Internet → Advanced network settings → choose the adapter and click Enable or Disable.
  • Access Control Panel via Network and Sharing Center, select Change adapter settings, right‑click the adapter, and pick Enable or Disable.
  • Manage via Device Manager: open it, expand Network adapters, then right‑click the adapter and select Disable device or Enable device.
  • Automate through Command Prompt: run netsh interface show interface, then use netsh interface set interface “Adapter Name” disable or enable (run as Administrator).

Are you having trouble connecting your device to any network? Your Windows network adapter might be the issue. Network adapters allow your Windows device to connect to wired, wireless, and virtual networks. Whether you’re troubleshooting connectivity issues, improving security, testing configurations, or managing multiple interfaces, knowing how to enable or disable a network adapter in Windows 10 or Windows 11 is an essential IT skill.

There are several reasons why toggling a Windows network adapter on or off is necessary. Disabling one can halt interference during troubleshooting, enforce security protocols, or optimize bandwidth by deactivating unused connections. Meanwhile, enabling it restores access instantly.

In this guide, we will teach you methods for enabling or disabling network adapters in Windows, ensuring you’re equipped to troubleshoot, secure, or optimize connections with confidence.

Methods to enable or disable network adapters

Option 1: Using Windows Settings (easiest method)

Using the Windows Settings app is the quickest way to enable or disable a Windows network adapter. It does not require technical knowledge to use this method.

  1. Open Windows Settings (Win + I).
  2. Open Network & Internet, then select Advanced network settings.
  3. Scroll to Network adapters, then choose an adapter, like Wi-Fi or Ethernet.
  4. Click Enable or Disable.

Option 2: Using Control Panel

The Control Panel provides a traditional interface for managing network connections. It’s easy to use this method, especially for long-time Windows users.

  1. Open the Control Panel (use the Search bar).
  2. Go to the Network and Sharing Center.
  3. Click Change adapter settings.
  4. Right-click the adapter you want adjusted, then select Enable or Disable.

Option 3: Using Device Manager

Device Manager offers more detailed control over Windows network adapters, including access to driver settings, hardware status, and troubleshooting tools. This method is useful when troubleshooting driver conflicts, hardware issues, or missing adapters.

  1. Launch your Device Manager (search via Start or Win + X).
  2. Expand Network adapters.
  3. Right-click your desired device.
  4. Choose Disable device or Enable device from the context menu.

Option 4: Using Command Prompt (advanced scripting & automation)

Command Prompt (or PowerShell) works best for IT administrators who need to remotely enable or disable Windows network adapters at scale.

  1. Open Command Prompt (search cmd via Start).
    • Make sure to open it as Administrator.
  2. Run this command to list all network adapters and identify their exact names:
    • netsh interface show interface 

This command displays a list of adapters with their names, their state (Enabled/Disable), and their type.

  1. To disable a network adapter, input this command:
    • netsh interface set interface “Adapter Name” disable
  2. To enable a network adapter, input this command:
    • netsh interface set interface “Adapter Name” enable 

Make sure to replace “Adapter Name” with the exact name. For example, to search for an adapter named “Wi-Fi 2”, input: netsh interface set interface “Wi-Fi 2” disable

Consider watching this video guide: ‘How to Enable or Disable Network Adapters in Windows’.

How to check if a network adapter is enabled or disabled

Windows 10/11 has easy-to-understand tools to check the current state of a network adapter:

Method 1: Using Windows Settings (quick & user-friendly)

  1. Open Windows Settings (Win + I).
  2. Open Network & Internet, then select Advanced network settings.
  3. Scroll to Network adapters, then look for the Status label under each adapter:
    1. If the status is Enabled, it means the adapter is active and ready to connect.
    2. If the status is Disabled, it means the adapter is inactive.

Method 2: Using Control Panel

  1. Open the Control Panel (use the Search bar).
  2. Go to the Network and Sharing Center.
  3. Click Change adapter settings.
  4. In the list of network adapters, Disabled adapters will appear grayed out, while enabled ones show in color.

Method 3: Using Device Manager

  1. Launch your Device Manager (search via Start or Win + X).
  2. Expand Network adapters.
  3. Right-click your desired device, then select Disable device or Enable device from the context menu.
    1. If the menu shows Enable device, it means the adapter is currently disabled (and vice versa).
    2. Disabled adapters also show a grayed-out icon for quick identification.

Troubleshooting issues with network adapters

Whether your adapter is missing, disabled, not responding, or showing driver errors, issues with your Windows network adapter can disrupt operations. These errors can prevent a device from connecting to the internet and disrupt internal network access. Below are some of the most common network adapter issues and how to fix them:

The network adapter does not appear

This can happen when the adapter is missing from Settings or Device Manager. You can fix this by:

  • Checking for hidden devices in Device Manager:
    • Open Device Manager (search via Start or Win + X).
    • Click View, then select Show hidden devices.
    • Expand Network adapters.
      • If the adapter you want to use is grayed out, right-click it, then Enable.

OR;

  • Restarting your computer:
    • A reboot often forces Windows to redetect hardware, especially after driver updates or system changes.

Cannot enable the adapter

This happens when the Enable option is grayed out or fails to turn on. Fix this by:

  1. Running the network troubleshooter:
    1. Go to Windows Settings (Win + I).
    2. Navigate to Network & Internet > Status.
    3. Click Network troubleshooter.
    4. Let Windows OS diagnose and auto-fix issues like corrupted settings or IP conflicts.
  2. Updating the network adapter driver:
    1. Open Device Manager (search via Start or Win + X).
    2. Right-click the adapter you prefer.
    3. Select Update driver, then Search automatically.
    4. If Windows finds no updates, visit the manufacturer’s website for the latest driver.

No internet access after enabling the adapter

This case happens when the adapter is enabled but still has no connection. Fix this by:

  1. Reset network settings:
    1. Go to Windows Settings (Win + I).
    2. Navigate to Network & Internet > Advanced network settings.
    3. Click Network reset.
    4. Click confirm to reinstall adapters and restore default configurations.
  2. Check for Windows updates:
    1. Outdated OS builds can break compatibility. Install pending updates under Settings > Windows Update.
  3. Restart your modem:
    1. Power-cycle your router to resolve ISP-side glitches or DHCP lease conflicts.
    2. For an advanced fix, use Command Prompt to reset TCP/IP:
      1. netsh int ip reset
        ipconfig /release
        ipconfig /renew 

Here’s a video guide on how to reset your network settings in Windows 10.

Quick-Start Guide

NinjaOne has several scripts that can help with enabling or disabling network adapters in Windows.

Remote tools available in NinjaOne that can help you manage network adapters across your devices:

  • Remote Registry
  • File Browser
  • Service Manager

Manage Windows network adapters like a pro

Learning how to manage Windows network adapters using Settings, Control Panel, Device Manager, or even the command line allows you to troubleshoot issues easily and optimize your network connections.

This skill also allows you to save time and minimize network downtime. Network issues don’t have to be a headache with the help of Windows’ built-in Network troubleshooter or using the option to update its drivers in Device Manager.

For many businesses and MSPs, relying on centralized endpoint management tools can help users monitor and manage network devices, helping teams maintain uptime, security, and policy compliance. Consider trying NinjaOne Endpoint Management to gain full visibility and control over your network devices and connections. Get started with a 14-day free trial.

FAQs

When you disable a network adapter, its network connection is cut completely. For instance, turning the Wi-Fi/Ethernet off will lead to loss of internet or local network access. Bluetooth will also lead to loss of connection of paired devices, such as headphones or mics.

You can turn a network adapter back on by following the steps in Methods to enable or disable network adapters above.

If the Windows Network adapter is not visible after accidentally disabling it, it is possible that it was hidden due to issues. Use Device Manager in Windows to find the hidden adapter and re-enable it (follow the troubleshooting steps above).

Yes. Disabling Wi-Fi while the Ethernet is still active ensures your computer prioritizes the wired connection. This method reduces latency for gaming or streaming. It provides a stronger, more secure connection and is also less susceptible to interference.

Common causes for this are driver issues, hardware faults, or hidden adapters. Fix it by doing any of these options:

  • Look for corrupted drivers:
    • Look for corrupted or uninstalled drivers in Device Manager. (These are the drivers with a yellow exclamation mark beside them.)
    • Reinstall them using Device Manager or the manufacturer’s site.
  • Check for faulty hardware:
    • Check for loose wires like a detached USB Wi-Fi adapter, Wi-Fi dongle, or a damaged Ethernet port.
  • Unhide adapters:

  • Reset using Settings:
    • Go to Windows Settings (Win + I).
    • Navigate to Network & Internet > Advanced network settings.
    • Click Network reset.
    • Confirm to reinstall adapters and restore default configurations.
  • Using Command Prompt:
    • Open Command Prompt (search “cmd” on Start).
      • Make sure to run Command Prompt as Administrator.
    • Renew your DHCP lease to refresh your IP address:
      • ipconfig /release 
      • ipconfig /renew 
    • Reset network settings to default:
      • netsh int ip reset
      • netsh winsock reset 
    • Restart your computer to apply.

Yes. Navigate to Windows Settings under Advanced network settings and look for the Status label (Enabled or Disabled). Disabled adapters appear gray in Control Panel. In Device Manager, disabled adapters show a grayed‑out icon and offer Enable device in their context menu.

Open Device Manager, go to View → Show hidden devices, expand Network adapters, and re-enable any grayed‑out entries. You can also restart your computer to force hardware redetection.

Try Windows’ Network troubleshooter (Settings  Network & Internet → Status). If that fails, update the adapter driver via Device Manager. If no update shows, visit the manufacturer’s website.

Test another device on the same network to determine whether the problem is with your router or ISP. If other devices work, remove and reinstall the adapter from Device Manager. If none of your devices connect, restart your router or contact your internet provider.

You might also like

Ready to simplify the hardest parts of IT?