Disabling the "Energy-Efficient Ethernet" property using PowerShell

My goal is to disable two values (“Selective suspend” and “Energy-Efficient Ethernet”) via PowerShell, which pertain to the Surface Ethernet Adapter.

In reference to "Selective suspend", the following command works: Disable-NetAdapterPowerManagement -SelectiveSuspend "Ethernet" -NoRestart In reference to "Energy-Efficient Ethernet", I've searched the internet for the correlating keyword/object, to no avail. The keyword/object "EEELinkAdvertisement" doesn't succeed with the 'Disable-NetAdapterPowerManagement' command. I have over 750 Surface Pro's that I need to deploy these settings to. Any feedback would be greatly appreciated.

Doesn’t this help you?

Disabling the “Energy-Efficient Ethernet” property using PowerShell

Thanks for the feedback.

Working string…

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