Installing Installation Manager silently

Use the Installation Manager installer to install Installation Manager silently.

About this task

The Installation Manager installer is used to install the Installation Manager. You can install the Installation Manager as an administrator, or in non-administrator modes. Follow the example below to install Installation Manager.

Procedure

  1. Unzip the Installation Manager installer. The Installation Manager kit is available from: http://download.boulder.ibm.com/ibmdl/pub/software/rationalsdp/v7/im/. Select the version number that you want to install, for example 130/, then select the zips directory.
  2. Switch to the InstallerImage_platform subdirectory.
  3. Enter one of the following commands:
    • To install as an administrator on Windows®: installc –-launcher.ini silent-install.ini -log <log file path and name> For example: installc --launcher.ini silent-install.ini -log c:\mylogfile.xml
    • To install as non-administrator on Windows: userinstc –-launcher.ini user-silent-install.ini -log <log file path and name> For example: userinstc --launcher.ini user-silent-install.ini -log c:\mylogfile.xml

Results

After you install Installation Manager silently, you can use Installation Manager or the Installation Manager installer to silently install packages.

Changing the default installation location

You can change the default location for installing Installation Manager by modifying the install.xml response file.

About this task

The Installation Manager installer uses a default response file to install Installation Manager installer. You can modify the file to change the default installation location.

Procedure

  1. Go to the InstallerImage_platform directory
  2. Locate the response file install.xml
  3. Modify the location for installing Installation Manager by adding profile information and using the data key and value attributes to specify the installation location. The installation location must be a directory named eclipse.

Example

Changes were made to the default install.xml response file to change the installation location to C:\IBM\InstallationManager.
<?xml version="1.0" encoding="UTF-8"?>
<agent-input clean='true' temporary='true'>

<!-- add a profile and specify the installation location using the data value attribute. The location must end in \eclipse -->
<profile kind='self' installLocation='C:\IBM\InstallationManager\eclipse' id='IBM Installation Manager'>
<data key='eclipseLocation' value='C:\IBM\InstallationManager\eclipse'/>
</profile>

<server>
<repository location='.'/>
</server>

<!-- add the profile information but do not modify the features, id, and version number -->
<install>
<offering profile='IBM Installation Manager' features='agent_core,agent_jre' id='com.ibm.cic.agent' version='1.2.0.20080624_0100'/>
</install>
</agent-input>

Feedback