- Community Home
- >
- Software
- >
- HPE OneView
- >
- Remove an iLO5 Advanced license
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
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
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
10-10-2023 07:28 AM - last edited on 10-10-2023 08:59 PM by support_s
10-10-2023 07:28 AM - last edited on 10-10-2023 08:59 PM by support_s
I can't find a solid guide for the removal of the iLO5 Advanced license.
delete /map1 license command returns an error "COMMAND ERROR-UNSPECIFIED"...Invalid Target. From what I understand, it's no longer used (that way).
From what I can see, there is no option to remove it via GUI. What am I missing? Any help would be appreciated.
I am disinclined to resetting iLO to factory settings. Is there any other way?
Solved! Go to Solution.
- Tags:
- OneView
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 11:50 AM
10-10-2023 11:50 AM
SolutionHi,
You can do this using RIBCL last time I checked.
Get yourself the 'hponcfg' application, there are various versions for Linux, Windows etc.
Create a xml file with the following code, replace username and password with the ilo creds.
e.g. filename remove_lic.xml
<RIBCL VERSION="2.0">
<LOGIN USER_LOGIN="username" PASSWORD="password">
<RIB_INFO MODE="write">
<LICENSE>
<DEACTIVATE />
</LICENSE>
</RIB_INFO>
</LOGIN>
</RIBCL>
Run the code:
./hponcfg -f remove_lic.xml
If you are running it remotely or some other way, I think the XML code is the same, but the way you run it may be different.
Not sure if there is some way to use powershell to execute the RIBCL command, someone else may be able to help with that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2023 01:01 PM
10-10-2023 01:01 PM
Re: Remove an iLO5 Advanced license
Using a RIBCL command is a supported method to removing the license, besides performing a factory reset of the system.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2023 12:00 AM
10-12-2023 12:00 AM
Re: Remove an iLO5 Advanced license
Hello and thank you to both of you!
It took me a while to go around some basic, silly mistakes initially and to learn and understand what it was I was actually observing.
As you both stated, using HPE Lights-Out Online Configuration Utility for Windows x64 Editions, running from CMD or Powershell, I was able to easily remove the license.
For posterity, as stated before, you need to create an XML file containing the below section and save it (I used the filename Remove-iLO-license.xml):
<RIBCL VERSION="2.0"> <LOGIN USER_LOGIN="username" PASSWORD="password"> <RIB_INFO MODE="write"> <LICENSE> <DEACTIVATE /> </LICENSE> </RIB_INFO> </LOGIN> </RIBCL>
Save this file in the folder where you installed the iLO Config Utility for less hassle. For me, this was the default folder (C:\Program Files\Hewlett Packard Enterprise\HPONCFG).
Then run the command:
.\hponcfg.exe /u <insert username> /p <insert password> /f .\Remove-iLO-license.xml
Again, big thanks to both @sfrench-quilter and @ChrisLynch for helping out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2023 01:34 AM
10-12-2023 01:34 AM
Re: Remove an iLO5 Advanced license
Glad it worked out, thanks for the feedback.