Server Management - Remote Server Management
1754014 Members
7361 Online
108811 Solutions
New Discussion

Managing iLO using HPE PowerShell cmdlets

 
Aarti_Verma
Occasional Contributor

Managing iLO using HPE PowerShell cmdlets

Hi Folks,

HPEiLOCmdlets 2.0 supporting Gen10 ! is released:

The highlights of the release are:
- Total of 214 Cmdlets in this release. 71 new Cmdlets added in 2.0 out of which 53 are for supporting iLO5 features 
- Supports iLO5 on Gen10 using Redfish 
- Complete support of Absaroka feature.
- Support for all new user privileges in iLO.
- Backup and Restore of iLO settings.
- Support for Firmware verification scan and send system recovery event feature.
- Support for getting PCI Device, USB Device, software inventory.
- Support for new security settings: Production, High security, FIPS, SuiteB, CNSA
- Rebranded cmdlets to have HPE in the cmdlet name
- Connection based design of cmdlet to enhance customer experience
- Supports logging feature for better problem diagnosis of customer issues.
- RIBCL, Redfish interface is used for iLO communication in iLO 4, iLO 5 respectively.
- Re-grouped cmdlets to improve customer experience and usability
- Better error handling mechanism for error categorization

------------------------------------------------------------------------------------------------------
The HPEiLOCmdlets 2.0 module can be downloaded from below sites:

- HPE Support Site
https://support.hpe.com/hpsc/swd/public/detail?sp4ts.oid=1008862655&swItemId=MTX_2596ebfd0d404421be2ea73ca4&swEnvOid=4184

- PowerShell Gallery
https://www.powershellgallery.com/packages/HPEiLOCmdlets/2.0.0.0

------------------------------------------------------------------------------------------------------
Additional Links:

- HPEiLOCmdlets Sample Scripts
https://github.com/HewlettPackard/PowerShell-ProLiant-SDK/tree/master/HPEiLO/2.0

- User guide and release notes
http://h17007.www1.hpe.com/us/en/enterprise/servers/solutions/info-library/index.aspx?cat=scripting_tools_powershell#.V8AWOfl96Hv

- Migration Advisory 1.1 guides to migrate HPiLOCmdets 1.x scripts to HPEiLOCmdlets 2.0
https://www.powershellgallery.com/packages/HPEMigrationAdvisoryTool/1.1.0.0

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

Use the HPEiLOCmdlets 2.0.0.0 for HPE Proliant Servers management and automation.

Happy Scripting :)

Regards,
Aarti Verma

3 REPLIES 3
PhS-
Regular Advisor

Re: Managing iLO using HPE PowerShell cmdlets

Aarti,

Do you know if this HPEiLOcmdlet have really been tested (in my case against Gen 9) ?

I am seaching for help 

GokulKS
HPE Pro

Re: Managing iLO using HPE PowerShell cmdlets

Hi,

As I mentioned in other posts there is a bug for generating CSR with custom fields on iLO4 i.e., Gen 8 and 9.

Thanks,

Gokul


I am a HPE Employee

Accept or Kudo

Anand1202
Advisor

Re: Managing iLO using HPE PowerShell cmdlets

The InventoryInformation.ps1 sample script seem to have an error:

$result = Get-HPEiLOServerSoftwareInventory -Connection $connection

foreach($output in $result)
{

if($output.Status -eq "OK")
{

Write-Host "`nServer Software Inventory information for $($output.IP)." -ForegroundColor Green

$output.Devices

}

else
{
if($output.StatusInfo -ne $null)
{ $message = $output.StatusInfo.Message; Write-Host "`nFailed to get Server Software Inventory information for $($output.IP): "$message -ForegroundColor Red }
}

}

 

Has anyone ever tried to use it?