Change the default installation location for Installation Manager
We can change the default location for installing Installation Manager by changing the install.xml response file or running the command-line option -installationDirectory. For information about the -installationDirectory option, see Installation Manager command-line arguments for silent mode.The Installation Manager installer uses a default response file to install Installation Manager.
Procedure
To change the response file:
- Open the directory where you extracted the installation files.
- Locate and open the response install.xml file.
- Change the location for installing Installation Manager. We must use the profile command to specify the installation location. Restriction: The installation location must be a directory named eclipse.
Example
This example shows the install.xml file before the changes:<?xml version="1.0" encoding="UTF-8"?> <agent-input clean='true' temporary='true'> <server> <repository location='.'/> </server> <install> <offering features='agent_core,agent_jre' id='com.ibm.cic.agent' version='1.7.0000.20130905_1714'/> </install> </agent-input>This example shows the install.xml file after you add the profile command:<?xml version="1.0" encoding="UTF-8"?> <agent-input clean='true' temporary='true'> <profile kind='self' installLocation='C:\IBM\InstallationManager\eclipse' id='IBM Installation Manager'> </profile> <server> <repository location='.'/> </server> <install> <offering features='agent_core,agent_jre' id='com.ibm.cic.agent' version='1.7.0000.20130905_1714' /> </install> </agent-input>Use a comma between agent_core and agent_jre.
Home