Windows 10 | Setting NIC Properties dependig on Vendor via Powershell

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 "*"

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.