How to Disable Ethernet on Windows 11: A Step-by-Step Guide

Sometimes you may want to disable your Ethernet connection on Windows 11—maybe to troubleshoot internet issues, switch to Wi-Fi, save power, or prevent unauthorized network use. The good news? Disabling Ethernet is quick and easy, and you have multiple methods to do it.

In this guide, I’ll walk you through step-by-step methods to disable Ethernet in Windows 11 using Settings, Control Panel, Device Manager, and even Command Prompt.


Why Disable Ethernet in Windows 11?

Here are some common reasons people disable Ethernet:

  • Switching networks – If you want to force your PC to use Wi-Fi instead of Ethernet.

  • Troubleshooting – Helps identify whether Ethernet is causing network issues.

  • Security – Temporarily cutting off wired internet access.

  • System performance – Rare cases where drivers conflict with Wi-Fi.


Method 1: Disable Ethernet via Settings

The simplest way is through Windows Settings.

Steps:

  1. Press Win + I to open Settings.

  2. Go to Network & internet.

  3. Click on Ethernet in the left panel.

  4. Toggle the switch Off to disable Ethernet.

👉 Your PC will immediately disconnect from the wired network.


Method 2: Disable Ethernet via Control Panel

If you prefer the classic method, Control Panel still works.

Steps:

  1. Press Win + R, type ncpa.cpl, and press Enter.

  2. This opens Network Connections.

  3. Right-click your Ethernet adapter.

  4. Select Disable.

To re-enable it later, just right-click and select Enable.


Method 3: Disable Ethernet via Device Manager

This method disables the Ethernet adapter at the driver level.

Steps:

  1. Press Win + X and choose Device Manager.

  2. Expand Network adapters.

  3. Right-click your Ethernet adapter (usually Intel or Realtek).

  4. Select Disable device.

  5. Confirm when prompted.

👉 This is useful if you don’t want Windows to reconnect automatically.


Method 4: Disable Ethernet via Command Prompt

For advanced users, Command Prompt offers a quick way.

Steps:

  1. Press Win + S, type cmd, and choose Run as administrator.

  2. Type the command:

    netsh interface show interface

    (This lists all network interfaces).

  3. Find your Ethernet adapter name (e.g., Ethernet).

  4. Disable it with:

    netsh interface set interface "Ethernet" admin=disable
  5. To re-enable later:

    netsh interface set interface "Ethernet" admin=enable

Method 5: Disable Ethernet via PowerShell

Similar to Command Prompt, but using PowerShell.

Steps:

  1. Press Win + X, then select Windows Terminal (Admin).

  2. Type:

    Get-NetAdapter | Format-Table

    (This shows all adapters).

  3. Disable Ethernet with:

    Disable-NetAdapter -Name "Ethernet" -Confirm:$false
  4. Re-enable it with:

    Enable-NetAdapter -Name "Ethernet"

Pros and Cons of Disabling Ethernet

✅ Pros

  • Forces PC to use Wi-Fi.

  • Helps with troubleshooting.

  • Enhances network security.

❌ Cons

  • No internet if Wi-Fi isn’t available.

  • Some apps may not work without Ethernet.

  • Could cause confusion if you forget it’s disabled.


Conclusion

Disabling Ethernet on Windows 11 is easy, and you have several options—from simple Settings toggles to advanced Command Prompt or PowerShell commands.

If you just need a quick disconnect, Settings or Control Panel will do the job. For a more permanent block, Device Manager or command-line tools are the way to go.


FAQs

1. Does disabling Ethernet remove the driver?

No, it just disables the connection. You can re-enable it anytime.

2. Will Wi-Fi work if I disable Ethernet?

Yes, your PC will automatically switch to Wi-Fi if it’s available.

3. Can I disable Ethernet for specific apps only?

Not directly, but you can use a firewall to block apps from using Ethernet.

4. Is it better to disable Ethernet or unplug the cable?

Both work, but disabling via software ensures it won’t reconnect automatically.

5. Can I schedule Ethernet to disable automatically?

Yes, using a PowerShell script and Task Scheduler, you can automate it.


Scroll to Top