Hi all,
I have the belo line to retrive the network info of each host in a specific cluster:
get-cluster ClusterName | get-vmhost | Get-VMHostNetworkAdapter | select VMhost, Name, IP, SubnetMask, PortGroupName | Export-Csv -Path .\report.csv -NoTypeInformation -UseCulture
The output looks like this:
I'm wondering how can I get rid of the first 6 rows? the vmnic ones, is there any parameter or option to exclude them from the output?