Skip to content
Follow
Windows 🟡 Intermediate

How to Enable Energy Efficient Ethernet in Windows 11

Richard
Written by
Richard
Jul 15, 2026 Updated Aug 3, 2026 4 min read
How to Enable or Disable Energy Efficient Ethernet (EEE) in Windows 11
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.

⚡ Quick Answer

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.

  1. Open Device Manager. You can search for it in the Windows search bar .
  2. Find and expand the Network adapters section.
  3. 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.
  4. Click on the Advanced tab.
  5. 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”.
  6. In the Value box, choose On or Enabled to turn it on, or Off or Disabled to turn it off.
  7. Click OK to save your changes.
  8. You can now close Device Manager.
Network adapter properties window in Windows 11 Device Manager.
Network adapter properties window in Windows 11 Device Manager.
Energy Efficient Ethernet options in Windows 11 network adapter properties.
Energy Efficient Ethernet options in Windows 11 network adapter properties.

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.

  1. First, you need to know the exact name of your network adapter. Open Network Connections by pressing ⊞ Win+R, typing ncpa.cpl, and pressing Enter. Note down the name of the adapter you want to change (e.g., “Ethernet”).
  2. 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.
  3. To find the exact name of the EEE setting for your adapter, type the following command and press Enter. Replace Ethernet with the name of your network adapter from step 1:
    Get-NetAdapterAdvancedProperty -Name "Ethernet" | Format-Table
  4. 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”.
  5. Now, type one of the following commands and press Enter to turn EEE on or off.
    • To turn EEE on:
      Set-NetAdapterAdvancedProperty -Name “Ethernet” -DisplayName “Energy-Efficient Ethernet” -DisplayValue “Enabled”
    • To turn EEE off:
      Set-NetAdapterAdvancedProperty -Name “Ethernet” -DisplayName “Energy-Efficient Ethernet” -DisplayValue “Disabled”
  6. Remember to replace Ethernet with your network adapter’s name and Energy-Efficient Ethernet with the exact EEE property name you found in step 4.
  7. You can now close Windows Terminal.

Summary

📝Good to Know
You can enable or disable Energy-Efficient Ethernet (EEE) in Windows 11 using either Device Manager or PowerShell. EEE helps save power, but disabling it might fix connection issues. You need administrator rights to make these changes.

Should I enable or disable energy efficient Ethernet?

You can try disabling Energy Efficient Ethernet if you are having network connection problems. If it doesn't fix the issue or you want to save power, you can enable it. It helps reduce electricity use when your network isn't busy.

What does energy efficient Ethernet do?

Energy Efficient Ethernet, also known as IEEE 802.3az, makes your network connection use less power. It automatically lowers power use when little data is being sent or received, helping to save electricity.

Should I disable power saving mode on Ethernet?

You can disable the power saving mode, which is Energy Efficient Ethernet, if you experience network issues. If your internet works fine, leaving it enabled helps save energy. It's often best to try disabling it only if you have problems.

What is energy efficient Ethernet configuration?

Energy Efficient Ethernet configuration involves turning the feature on or off. You can find this setting in your network adapter's properties within Windows Device Manager. Look for 'Energy Efficient Ethernet' under the Advanced tab.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

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.

📚 Related Tutorials

How to find your device setup country in Windows 11
Windows How to find your device setup country in Windows 11
How to Change Tab Colors in Windows Terminal
Windows How to Change Tab Colors in Windows Terminal
3 Simple Steps to Reset Network Adapters in Windows 11
Windows 3 Simple Steps to Reset Network Adapters in Windows 11
How to Disable Windows Firewall on Windows 11
Windows How to Disable Windows Firewall on Windows 11

2 Comments

  • Hello,

    I noticed a possible technical error in the PowerShell section of the article about managing Energy-Efficient Ethernet (EEE).

    The article currently shows:

    To turn EEE on:

    Get-NetAdapterAdvancedProperty -Name “Ethernet” | Format-Table

    However, this command only displays the advanced properties of the network adapter and does not change the EEE setting.

    To modify the EEE status, the command should use Set-NetAdapterAdvancedProperty instead. For example:

    To enable EEE:

    Set-NetAdapterAdvancedProperty -Name “Ethernet” -DisplayName “Energy-Efficient Ethernet” -DisplayValue “Enabled”

    To disable EEE:

    Set-NetAdapterAdvancedProperty -Name “Ethernet” -DisplayName “Energy-Efficient Ethernet” -DisplayValue “Disabled”

    It may also be helpful to verify the change afterward using:

    Get-NetAdapterAdvancedProperty -Name “Ethernet” -DisplayName “Energy-Efficient Ethernet”

    It appears that the Get-NetAdapterAdvancedProperty command may have been mistakenly used instead of Set-NetAdapterAdvancedProperty in the “To turn EEE on” section.

    Thank you for providing useful technical content. I hope this helps improve the accuracy of the article.

    Reply

Leave a Comment

Your email address will not be published. Required fields are marked *