What the "Network Adapter Disabled" Error Means
This error means that the Windows operating system has disabled the network interface (wired or wireless) at the driver level. As a result, the computer cannot use this adapter to connect to the network. The error appears in Device Manager with the adapter's icon grayed out (down arrow) and an absence of active network connections in "Network settings". Unlike error codes like 0x8007045D, there is no numeric code here—this is a device status.
Causes
- Manual disable by the user — the adapter was disabled via Device Manager or "Network settings" (for example, to save laptop battery).
- Driver conflict — after a Windows update or new driver installation, the adapter may have been automatically disabled due to incompatibility.
- Power settings — Windows can disable the adapter to save power (especially on laptops) via "Power Management" in the adapter's properties.
- Failure after a system update — some Windows updates may temporarily disable devices to reconfigure them.
- Malware — rarely, some viruses disable network adapters to block internet access and updates.
- Hardware issues — if the adapter is physically faulty, the system may disable it.
Method 1: Enable via Device Manager (Primary)
This is the simplest and fastest method, which works in 90% of cases.
- Open Device Manager: press
Win + R, typedevmgmt.msc, and press Enter. - In the list, find the "Network adapters" section and expand it.
- Locate your adapter. A disabled adapter will be displayed with a gray icon and a white down arrow.
- Right-click on it and select "Enable device".
- Wait for the icon to return to normal (no gray background or arrow).
- Check the connection: click the network icon in the system tray (bottom-right corner) — a list of available networks should appear.
⚠️ Important: If the "Enable device" option is inactive or missing, the adapter might be hidden. In the Device Manager menu, select "Action" → "Show hidden devices", then repeat the steps.
Method 2: Enable via PowerShell (Administrator)
If the adapter does not appear in Device Manager or enabling it doesn't work, use PowerShell.
- Open PowerShell as Administrator: press
Win + Xand select "Windows PowerShell (Admin)". - Get a list of all network adapters by entering the command:
In the output, find your adapter. TheGet-NetAdapterStatuscolumn will showDisabledfor a disabled adapter. - Enable the adapter by substituting its exact name (e.g.,
EthernetorWi-Fi):
TheEnable-NetAdapter -Name "Ethernet" -Confirm:$false-Confirm:$falseflag disables the confirmation prompt. - Check the status again with
Get-NetAdapter. The status should change toUp.
Method 3: Update or Reinstall the Driver
If the adapter is disabled due to a driver conflict, it needs to be reinstalled.
- In Device Manager, locate the disabled adapter.
- Right-click on it and select "Uninstall device". In the window that appears, check "Delete the driver software for this device" (if this option is available) and click Uninstall.
- Restart the computer. Windows will automatically detect the adapter and install the standard driver.
- If the standard driver does not work, download the latest driver from the website of your computer or laptop manufacturer (or the network card manufacturer if it's a separate card). Install it and restart the system.
Method 4: Reset the Network Stack (Comprehensive Solution)
If the previous methods did not help, the problem might be in the network configuration. Resetting network settings often resolves such issues.
- Open Windows Settings (
Win + I) → "Network & Internet" → "Advanced network settings". - At the bottom, click "Network reset".
- Confirm the reset. Windows will remove all network adapters and reinstall them. After the reboot, adapters will be enabled by default.
- Alternatively, via Command Prompt (Administrator):
Restart the computer after running each command.netsh winsock reset netsh int ip reset ipconfig /release ipconfig /renew ipconfig /flushdns
Prevention
To prevent the adapter from disabling itself:
- Disable power saving for the adapter:
- In Device Manager, open the adapter's properties → "Power Management" tab.
- Uncheck "Allow the computer to turn off this device to save power".
- Regularly update drivers via Device Manager (automatic search) or from the manufacturer's website.
- Avoid unofficial drivers — only install signed drivers from the hardware manufacturer.
- After major Windows updates, check the adapter's status in Device Manager.
- Use a reputable antivirus to prevent malware from disabling the adapter.