- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Remote Server Management
- >
- Re: Managing iLO using HPE PowerShell cmdlets
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2018 11:27 PM - last edited on тАО05-23-2018 10:37 PM by Parvez_Admin
тАО04-29-2018 11:27 PM - last edited on тАО05-23-2018 10:37 PM by Parvez_Admin
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2018 12:12 PM
тАО06-07-2018 12:12 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-10-2018 10:12 PM
тАО06-10-2018 10:12 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2021 10:00 AM
тАО05-31-2021 10:00 AM
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?