Get-NetAdapter -Physical | where InterfaceDescription -eq "Intel(R) Ethernet Connection (7) I219-V" | Set-NetAdapterAdvancedProperty -NoRestart -DisplayName "Energieeffizientes Ethernet" -DisplayValue "Aus" Get-NetAdapter -Physical | where InterfaceDescription -eq "Realtek*" | Set-NetAdapterAdvancedProperty -NoRestart -RegistryKeyword "EEE" -RegistryType "REG_SZ" -RegistryValue "0" Get-NetAdapter -Physical | where DriverProvider -eq "Intel" | where DriverVersion -like "12.18.8.*" | Set-NetAdapterAdvancedProperty -NoRestart -DisplayName "Energieeffizientes Ethernet" -DisplayValue "Ein"
Get adapters properties:
Get-NetAdapter ADAPTERNAME | fl *
Get adapters switches:
Get-NetAdapterAdvancedProperty OFFICE1 -AllProperties | Format-List -Property "*"