vCenter

 View Only
  • 1.  hp-ams

    Posted Jul 15, 2016 11:49 AM

    how to report hp-ams driver version on vcenter. there are 100 host on vcenter. ı want to learn hp-ams driver version



  • 2.  RE: hp-ams

    Posted Jul 15, 2016 12:40 PM


  • 3.  RE: hp-ams

    Posted Jul 15, 2016 01:22 PM

    You can use PowerCLI to list the version and other information like the following snippet:

    foreach($h in Get-VMHost) {

      $esxcli = Get-EsxCli -VMHost $h

      $esxcli.software.vib.list() | Where {$_.Name -like 'hp-ams'} | Select @{N='Hostname'; E={$esxcli.VMHost}}, Version, ID

    }

    Which will generate output like this:

    Hostname              Version                                        ID

    --------                       -------                                          --

    host01.local             550.10.3.0-15.1198610            Hewlett-Packard_bootbank_hp-ams_550.10.3.0-15.1198610

    host02.local             550.10.3.0-15.1198610            Hewlett-Packard_bootbank_hp-ams_550.10.3.0-15.1198610

    host03.local             550.10.3.0-15.1198610            Hewlett-Packard_bootbank_hp-ams_550.10.3.0-15.1198610

    You can also export this data into a CSV file etc.



  • 4.  RE: hp-ams

    Posted Jul 15, 2016 01:23 PM

    without PowerCLI  ?



  • 5.  RE: hp-ams

    Posted Jul 15, 2016 01:29 PM

    Do you really want to click around on 100 host objects?

    If you do, then you can find that info on the Hardware Status tab on the host in the Software Components section:

    And for reference on the ESXi shell/SSH:

    esxcli software vib list | grep -i ams