MyEclipse Tutorial: unattended installation

[ MyEclipse CI 2019.4.0 installation package download ]

The following applies to 2013 and above.

Running the silent installer

1. Create an unattended response file.

2. To activate the unattended mode, use the command line to run the installer file in the following parameters:

<offline-installer>.exe --unattended <absolute path to file>

  • Name <offline-installer> file varies depending on each version, using the name of the download.
  • --unattended switch represents the installation will continue without user intervention. You must use the full path and backslash as a delimiter, and even the installer response file in the same folder or in the current directory as well.
     For example: myeclipse-ci-2019.4.0-offline -installer-windows.exe --unattended c: \ myfolder \ response.txt
Troubleshooting

If this fails, check the log file:

  • Windows—C:\Users\${userid}\AppData\Local\Temp\pulse-one-${timestamp}.log
  • Linux—/tmp/pulse-one-${timestamp}.log
  • OS X—$TMPDIR/pulse-one-${timestamp}.log
The response file format

A response file is a simple text file, specifying various (case sensitive) property. If you fail to include the properties or attributes configured correctly, the installer will point out what the offending property and its expected value.

MyEclipse Tutorial: unattended installation

E.g:

delivery.install.folder=C:/Dev/Apps/MyEclipse CI
 delivery.install.architecture=x86_64 
result.file=c:/Genuitec/unattended.log

Supplement
  • Ensure that the response properties in the file has the correct name. Although the value of the property will generate an error incorrectly, but in fact only ignore the incorrect attribute name.
  • If you do not include a delivery route <home> \. Deliverycenter.installs file, then only consider delivery.install.folder value.
    Note: If the file does not exist .deliverycenter.installs but you point to files that contain the same version of the installation folder, the installation will not continue.
  • If you try to install the release stream is already installed on the system (for example, if you try to install MyEclipse 2017 Stable 2.0 but have installed MyEclipse 2017 Stable 1.0), then the installer will update the version when the update is available - your delivery .install.folder this value must point to the existing position, if it points to a different location, the installation program will not perform any operation. If you do not update, the installer will not do anything.

Guess you like

Origin www.cnblogs.com/AABBbaby/p/11102387.html