List all objects
typeperf -q "Network Interface" #all Network Interface objects
typeperf -q #all objects
List network adapters
Get-WmiObject Win32_PerfFormattedData_Tcpip_Networkinterface | select name
Debug / Log objects
.\typeperf.exe "Network Interface()\<object from above>
Examples
# Debug Packets Received Errors on interface LAN-1 and write to output file
.\typeperf.exe "Network Interface(Intel[R] Ethernet 10G X710 rNDC)\Packets Received Errors" -o c:\temp\PacketsReceivedErrors_LAN-1.log
# Debug Current Bandwith of all adapters
.\typeperf.exe "Network Interface(*)\Current Bandwidth"