cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
satch22
Engaged Sweeper
I'd love to know if I'm configured for AutoNeg or for 10/100/1000 full or half duplex. Can someone show me how I can add this now?
2 REPLIES 2
cmredkey
Engaged Sweeper
It would be great to get the duplex setting of the network adapters:

Powershell commands
To see the available adapters
Get-NetAdapter
To query the adapter setting
Get-NetAdapter | SELECT name, fullduplex | where name -eq 'card name'

For example on Windows 10 here is the command and results:
PS C:\> Get-NetAdapter | SELECT name, fullduplex | where name -eq 'Ethernet'

name fullduplex
---- ----------
Ethernet True

Hemoco
Lansweeper Alumni
This is possible with WMI but only for windows2008 and later, that's why it is not yet implemented in lansweeper.