- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- Upgrading iLO firmware with PowerShell - DL380 Ge...
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
Forums
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
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
тАО01-03-2023 12:38 PM - last edited on тАО01-04-2023 07:24 PM by support_s
тАО01-03-2023 12:38 PM - last edited on тАО01-04-2023 07:24 PM by support_s
Hello all,
I've put together a script to update the lights out FW using PowerShell. I can connect to the iLO and query it successfully. The hosts are running ESXi as an OS.
I'm just trying to figure out which image file needs to be applied using the following cmdlet:
$FirmwareFile = "SomeFilename"
$Result = Update-HPEiLOFirmware -Connection $connection -Location $FirmwareFile -Confirm:$false
When I access the download page for this model, it provides several different formats, including Windows, Linux and VMware. Is there something that needs to be extracted for this to work? I was expecting an .IMG format file but I don't see any of those available. Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2023 02:41 AM
тАО01-04-2023 02:41 AM
SolutionI typically start the Windows x64 Setup File on my PC and use the "Extract" only Button.
One of these Files is the ilo4_xxx.bin File, this is the Binary Update File for use in the iLO GUI.
Try this, Cali

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-04-2023 12:02 PM
тАО01-04-2023 12:02 PM
Betreff: Upgrading iLO firmware with PowerShell - DL380 Gen9
Thank you, I downloaded the 64bit Windows version and see the .bin file, and will give that a try with the script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-06-2023 12:58 PM
тАО01-06-2023 12:58 PM
Betreff: Upgrading iLO firmware with PowerShell - DL380 Gen9
So I was able to go from v2.55 to v2.81 using the syntax below:
$Result = Update-HPEiLOFirmware -Connection $connection -Location $FirmwareFile -Confirm:$false
The only caveat is that the $FirmwareFile variable needs to be qualified, i.e. 'C:\temp\ilo4_281.bin' or the cmdlet throws an error.
I did run into one other issue, namely one of the hosts is sitting at a very old version, v2.18, so I can't go the latest. Does anyone know where to find the older firmware, as the link posted above only alllows you to d/l the latest one.
Thanks.