Last active
April 13, 2018 07:44
-
-
Save a73xsh/6c67919ae7db6078e3228d479a050a08 to your computer and use it in GitHub Desktop.
Cisco enic driver vmware
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$hosts = Get-VMHost | |
$versions = @{} | |
Foreach($vihost in $hosts){ | |
$esxcli = Get-VMHost $vihost | Get-EsxCli | |
$versions.Add($vihost, ($esxcli.system.module.get("enic") | | |
Select Version)) | |
} | |
$versions.GetEnumerator() | Sort-Object Name | Format-List |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment