Information

This site will undergo a brief period of maintenance on Friday, 18 December at 12:30 AM Central/12:00 PM IST. During a 30 minute window, site availability may be intermittent.

Information
Newer version of documentation BMC provides a newer version of the documentation for this version of the product. As a result, BMC no longer accepts comments in this space.BMC recommends upgrading to the latest version of the product. To see documentation for that version, see bao8301.

Example: issue a Load IPL


This example shows how to issue a Load IPL for an LPAR.

/* REXX
An example of issuing a Load (IPL) for an LPAR
*/
CPC1 = 'IBM390PS.DINOSAUR'
IMAGE1 = 'LPAR2'

'IMFEXEC HMC CONNECT( CPC('CPC1') ) OUTTOKEN(TOKEN1) )'
'IMFEXEC HMC CONNECT( IMAGE( 'IMAGE1 ') OUTTOKEN(TOKEN2) ) TOKEN(TOKEN1)'

/* Load Address = 4C24; and IPL parameters are not needed */
'IMFEXEC HMC CMD(LOAD,4C24,NOFORCE) TOKEN(TOKEN2)'

/* Load Address = default; and IPL parameters = default */
'IMFEXEC HMC CMD(LOAD,NONE,NOFORCE) TOKEN(TOKEN2)'

/* Load Address = 4C24; and IPL parameters = 250098M1 */
'IMFEXEC HMC CMD(LOAD,4C24,NOFORCE,250098M1) TOKEN(TOKEN2)'

/* Load Address = default; and IPL parameters = 250098M1 */
'IMFEXEC HMC CMD(LOAD,NONE,NOFORCE,250098M1) TOKEN(TOKEN2)'

'IMFEXEC HMC DISCONNECT TOKEN(TOKEN2)'
'IMFEXEC HMC DISCONNECT TOKEN(TOKEN1)'


 

Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*

BMC AMI Ops Automation 8.3