How To Enable Network Adapter | Device Manager to PowerShell

Enabling a network adapter in Windows is done through Device Manager, Settings, or PowerShell — the right method depends on your level of access and comfort with command lines.

Whether your Wi‑Fi dropped or the Ethernet icon disappeared, the first step is making sure the hardware is active. A disabled adapter can’t connect to anything, and Windows gives you three consistent ways to turn it back on. Below you’ll find each route, what it’s best for, and the one‑sentence success cue that tells you it worked.

Enable Network Adapter on Windows: Three Consistent Methods

Each approach works on Windows 10 and 11. The table below summarizes where to go, how long it takes, and when to pick that method.

Method Access Point Best When…
Device Manager Search bar → Device Manager → Network adapters You want a visual list of all adapters
Settings (Network & internet) Settings → Network & internet → Advanced network settings You prefer a guided flow with troubleshooting tools
PowerShell Run PowerShell as admin → Enable-NetAdapter You need to script the task or work remotely

How to Enable a Network Adapter in Device Manager

Device Manager gives you a full inventory of every adapter on your machine — wired, wireless, virtual, and Bluetooth. If an adapter is present but grayed out, it’s disabled.

  1. Press Windows key + S to open Search, type Device Manager, and press Enter.
  2. In the list, expand Network adapters. You’ll see entries like “Realtek PCIe GbE Family Controller” or “Intel Wi‑Fi 6 AX201”.
  3. Right‑click the disabled adapter (it usually has a small downward arrow) and select Enable device.

The adapter’s icon changes — the arrow disappears — and the network icon in the system tray should show connected status within a few seconds.

Using Windows Settings to Enable the Adapter

The Settings app provides a streamlined path that also gives you access to the built‑in network troubleshooter and Network reset. Use this when you want the safety net of automatic diagnostics.

  1. Open Settings (press Windows key + I) and go to Network & internet.
  2. Select Advanced network settings near the bottom.
  3. Under More settings, click Network reset only if you’re dealing with a deeper problem. For a simple enable, instead click Change adapter options.
  4. In the new window, right‑click the disabled connection (the icon will be dimmed) and choose Enable.

The connection icon becomes fully colored, and the status changes from “Disabled” to “Enabled”.

Enabling a Network Adapter with PowerShell

PowerShell is fastest when you know the exact adapter name. It’s also the only method you can run on a remote machine or include in a deployment script.

  1. Press Windows key, type PowerShell, right‑click Windows PowerShell, and select Run as administrator.
  2. First, list all adapters to find the one you need: Get-NetAdapter | Select-Object Name, Status
  3. Note the name exactly (e.g., “Ethernet 2” or “Wi‑Fi”). Then run: Enable-NetAdapter -Name "Ethernet 2"
  4. The adapter will be enabled and the connection restarted automatically.

No error message appears in PowerShell, and Get-NetAdapter shows Status: Up for that adapter.

What Goes Wrong When Enabling a Network Adapter?

Even after a successful enable, you might still have no internet. Here are the most common problems and the exact fix for each.

Problem Likely Cause Fix
Adapter missing from Device Manager Driver uninstalled or corrupted Open Action menu in Device Manager, select Scan for hardware changes.
Multiple adapters shown – which one to enable? Your PC has virtual adapters (VPN, Docker, etc.) Enable only the one labeled Ethernet or Wi‑Fi; leave others alone unless you know they’re needed.
Adapter enables but no internet IP address conflict or DNS error Run Command Prompt as admin and type ipconfig /release, then ipconfig /renew.
“Network Reset” is the only option that works Adapter driver is deeply broken Go to Settings > Network & internet > Advanced network settings > Network reset > Reset now. This removes and reinstalls all adapters. You’ll need to restart after.

For Ethernet‑specific troubleshooting, Microsoft’s official guide covers cable checks, driver updates, and the full reset flow.

After Enabling: Confirm Your Connection Is Live

Once the adapter is turned on, a quick check prevents wasted time. Open Settings > Network & internet and look for a green “Connected” label under your Ethernet or Wi‑Fi entry. If it shows “No internet” instead, try the Command Prompt fix above — it clears stale IP settings 90 percent of the time. A working adapter connected to a live network is all it takes to get back online.

References & Sources