Hi Team,
I want to have a script to generate the follwoing below from the Virtual Infrastructure,
From the HP BIOS,
Get the Firmware version of the server, iLO Frimware
Power Options, Processor options, RAID info.
I dont know how to take these details from the power CLI.
I have listed few which I have tested for my requirement
From the ESXI HOST
Local datastore name can get from the get- datastore CMDLET
From the Vcenter, Networking details can get from get-networkadapters like MTU and vmnics details
Is there any way to get the traffic shaping and security details
To get the NTP Server details
Get-VMHost | GET-VMHostNtpServer
To get Services status from vCenter
Get-VMHost -name ESXi1 | Get-VMHostService
Stop a specific service on a specifc ESXi Host
$VMHost=Get-VMHost esx1.globedev.ddc Set-VMHostServiceStatus -VMHost $VMHost -ServiceName 'vpxa' -Action 'stop'
To get liscence
Get-License
I want all these informations to be exported in a single page like html. But I dont know how to get these details. I am new for this POWERCLI and I am learning. Kinldy help me to get the details.