HP iLO 3 Scripting and Command Line Guide

<LOGIN USER_LOGIN="adminname" PASSWORD="password">
<SERVER_INFO MODE="read">
<GET_HOST_PWR_MICRO_VER/>
</SERVER_INFO>
</LOGIN>
</RIBCL>
GET_HOST_PWR_MICRO_VER parameters
None
GET_HOST_PWR_MICRO_VER runtime errors
The possible GET_HOST_PWR_MICRO_VER error messages include:
Error—if the power micro cannot be read (hardware problem).
Power Off—if the server is powered off.
N/A—if the server does not support a power micro.
GET_HOST_PWR_MICRO_VER return messages
No errors and displays version information:
<GET_HOST_PWR_MICRO_VER>
<PWR_MICRO VERSION="2.3"/>
</GET_HOST_PWR_MICRO_VER>
Server powered off:
<GET_HOST_PWR_MICRO_VER>
<PWR_MICRO VERSION="OFF"/>
</GET_HOST_PWR_MICRO_VER>
Power micro not supported on the server:
<GET_HOST_PWR_MICRO_VER>
<PWR_MICRO VERSION="N/A"/>
</GET_HOST_PWR_MICRO_VER>
Failed to read power micro version:
<GET_HOST_PWR_MICRO_VER>
<PWR_MICRO VERSION="Error"/>
</GET_HOST_PWR_MICRO_VER>
RESET_SERVER
The RESET_SERVER command forces a warm boot of the server if the server is currently on. For this
command to parse correctly, the RESET_SERVER command must appear within a SERVER_INFO
command block, and SERVER_INFO MODE must be set to write. The user must have the Virtual
Power and Reset privilege to execute this command.
For example:
<RIBCL VERSION="2.0">
<LOGIN USER_LOGIN="adminname" PASSWORD="password">
<SERVER_INFO MODE="write">
<RESET_SERVER/>
</SERVER_INFO>
</LOGIN>
</RIBCL>
SERVER_INFO 137