Skip to content

Instantly share code, notes, and snippets.

@a73xsh
Created October 19, 2017 14:43
Show Gist options
  • Save a73xsh/81fa14b49adce31ab83da0a268f76561 to your computer and use it in GitHub Desktop.
Save a73xsh/81fa14b49adce31ab83da0a268f76561 to your computer and use it in GitHub Desktop.
$hosts = Get-VMHost
$versions = @{}
Foreach($vihost in $hosts){
$esxcli = Get-VMHost $vihost | Get-EsxCli
$versions.Add($vihost, ($esxcli.system.module.get("fnic") |
Select Version))
}
$versions.GetEnumerator() | Sort Name | Format-List
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment