How to Enable or Disable Energy Efficient Ethernet (EEE) in Windows 11
Energy-Efficient Ethernet (EEE) in Windows 11 lets you save power by putting your network connection into a low-power mode when it’s not busy.
This technology, also called IEEE 802.3az, automatically reduces the power used by your network adapter when there’s little data being sent or received.
Turning EEE off can sometimes fix network problems on Windows 11 computers. You need to be an administrator to make this change.
Open Device Manager, find your network adapter, select Energy Efficient Ethernet under Advanced properties, and choose Enabled or Disabled. Alternatively, use PowerShell commands, specifying your adapter name and the exact EEE property name.
Option 1Use Device Manager
You can turn Energy Efficient Ethernet (EEE) on or off directly through Device Manager. This tool lets you adjust settings for your computer’s hardware, including your network adapter. Find your network adapter in the list, open its properties, and look for the Advanced tab to make changes to EEE.
- Open Device Manager. You can search for it in the Windows search bar.
- Find and expand the Network adapters section.
- Double-click on the network adapter you want to change. It might have a name like “Intel(R) Ethernet Connection” or “Marvell AQC111C”. You can also right-click on it and choose Properties.
- Click on the Advanced tab.
- In the list of properties, find and select Energy Efficient Ethernet. The name might be slightly different depending on your network adapter. It could also say “EEE”, “Green Ethernet”, or “Power Saving Mode”.
- In the Value box, choose On or Enabled to turn it on, or Off or Disabled to turn it off.
- Click OK to save your changes.
- You can now close Device Manager.


Option 2Use PowerShell
For those comfortable with command lines, you can manage Energy Efficient Ethernet (EEE) using PowerShell. First, you’ll need to find the exact name of your network adapter by opening Network Connections. Then, open Windows Terminal as an administrator to run the commands that will enable or disable EEE.
- First, you need to know the exact name of your network adapter. Open Network Connections by pressing Windows key + R, typing
ncpa.cpl, and pressing Enter. Note down the name of the adapter you want to change (e.g., “Ethernet”). - Open Windows Terminal as an administrator. You can do this by searching for “Windows Terminal”, right-clicking it, and selecting “Run as administrator”. Make sure you have PowerShell selected in the terminal window.
- To find the exact name of the EEE setting for your adapter, type the following command and press Enter. Replace
Ethernetwith the name of your network adapter from step 1:
control netconnections
- Look at the DisplayName column in the results. Find the exact name for Energy Efficient Ethernet. It might be listed as “Energy-Efficient Ethernet”, “EEE”, “Green Ethernet”, or “Power Saving Mode”.
- Now, type one of the following commands and press Enter to turn EEE on or off.
- To turn EEE on:
Get-NetAdapterAdvancedProperty -Name "Ethernet" | Format-Table
- To turn EEE off:
Set-NetAdapterAdvancedProperty -Name "Ethernet" -DisplayName "Energy-Efficient Ethernet" -DisplayValue "Enabled"
- To turn EEE on:
- Remember to replace
Ethernetwith your network adapter’s name andEnergy-Efficient Ethernetwith the exact EEE property name you found in step 4. - You can now close Windows Terminal.
Summary
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!