Silently install an IIP using a response file to supply installation options during installation. You can also supply certain parameters on the command line in addition to those in your response file. To configure the installation, change the options in the response file before you issue the install command.
The sample options response file is named responsefile.iip.installer.sample.txt and is located in the IIP_root/iip directory.
################################################################################ # IBM WebSphere Installation Factory Integrated Installation Package options file # # This lets the options file author specify IIP options without having to specify # them on the command line. To use this options file, uncomment and modify the # parameters defined within, and rename the file to install.txt, for example. # # Use the following command to install the IIP: # # install -iipResponseFile=<IIP_HOME>/install.txt # # Enclose all values that contain spaces within a single pair of single quotes. # Otherwise, no quotes are required. # ################################################################################ ################################################################################ # Displaying (or not displaying) the IIP install wizard ################################################################################ # # Run the IIP without showing the IIP GUI. # -iipNoGUI ################################################################################ # # Show the IIP GUI when the IIP is invoked. # -iipShowGUI ################################################################################ # Disabling invocation of contributions ################################################################################ # # The -iipDisable option is used to disable the specified contributions to run during # this invocation of the IIP. # The IDs are comma-delimited. # # -iipDisable=<Invocation_ID1>,<Invocation_ID2>,... ################################################################################ # Logging and tracing ################################################################################ # # The following options are used to specify the logging and tracing options, and output locations. # # -iipLogfile=<Log file location. Default log file location is IIP_HOME\logs\log.txt> # -iipLoglevel=<off|severe|warning|error|info|config|all. Default log level is info> # -iipTracefile=<Trace file location. Default trace file location is IIP_HOME\logs\trace.xml> # -iipTracelevel=<off|fine|finer|finest|all. Default trace level is off> ################################################################################ # Specifying user type ################################################################################ # # The -iipUserType option is used to specify the user type and pass corresponding options into the invocation. # # -iipUserType=<root|nonroot. Default user type is root> ################################################################################ # Passing options to contributions ################################################################################ # # The -iipOptionSet option is used to pass options into the IIP upon invocation. # Exception: You can omit this option if passing options to a PRIMARY contribution; see below.) # # For example, install -iipNoGUI -iipOptionSet=IBM_WAS_AS -OPT installLocation='C:\Program Files\newinstall' -options D:\WAS\responseFile.txt -silent # -iipOptionSet=IBM_WASWS_AS -OPT installLocation='C:\Program Files\newinstall' -options D:\WASWS\responseFile.txt -silent # # Enclose all values that contain spaces within a single pair of single quotes. # Otherwise, no quotes are required. # # -iipOptionSet=<Invocation_ID> ################################################################################ # Using a primary contribution invocation to simplify option passing ################################################################################ # # When creating the IIP, the IF user can designate one of the contribution invocations as # the "primary" contribution invocation. This allows the -iipOptionSet option to be omitted # for that particular contribution so that invocation of the IIP can be virtually identical # to invocation of that contribution in terms of the option names and syntax. # # Any options specified on IIP invocation which are not preceded by the -iipOptionSet option # are assumed to belong to the primary contribution. # # Specifying the -iipOptionSet option for the primary contribution is not an error, it's just unnecessary/redundant. # # For example, following contribution options are assumed to be passed to the primary contribution: # # -OPT installLocation='C:\Program Files\newinstall' -options D:\WAS\responseFile.txt -silent # # If the user makes a typo on IIP options, these options will be treated as contribution options for primary contribution # and will not give a warning. # # Enclose all values that contain spaces within a single pair of single quotation # marks. Otherwise, no quotation marks are required. If quotation marks are used # when a value does not include spaces, the installation fails.