Show Contents / Index / Search

Deploy Reflection with a Transform

If you have created a transform to customize how Reflection is installed, you will need to deploy the transform with the primary installation. Transforms can be used with any install started with setup.exe or with command-line installs (used by many deployment tools). The installer can only apply transforms during an installation.

Note: Running Setup.exe from the command line will automatically use the correct language transform and apply any necessary prerequisites (for example, installing Microsoft .NET Framework or uninstalling an older version of EXTRA! or Reflection).

To add the transform to an install started with setup.exe

  1. On a workstation on which you have installed Reflection, open the Attachmate Customization Tool from a desktop shortcut or from a command line as follows:

    path_to_setup\setup.exe /admin

  2. In the Select Customization dialog box, select Open an existing Setup customization file or Companion installer, and then click OK.
  3. In the Open dialog box, browse to the location you selected when you created your transform file, and select the transform (.mst) file.
  4. From the User interface panel, select Use this customization with interactive installs using setup.exe.

    When you save your transform with this option selected, the Attachmate Customization Tool automatically updates the SETUP.INI file to apply your transform to the Reflection installation by adding the following line to the [Setup] section in the SETUP.INI file:

    CustomTransform=<your_transform.mst>

  5. From the File menu, click Save. (If Save is grayed out, click Exit and you will be prompted to save the file.)

    The transform can now be deployed to end users via the Setup.exe file. (Users can run Setup.exe or the Setup.exe file can be called from a script or initiated from a command line.)

To add the transform to a setup.exe command-line install

  • Alternately, you can add the transform to a command-line installation. Use the following command line syntax:

    <path_to_setup>\setup.exe /install TRANSFORMS=transform.mst

    Note: Running Setup.exe from the command line will automatically use the correct language transform and apply any necessary prerequisites (for example, installing Microsoft .NET Framework or uninstalling an older version of EXTRA! or Reflection).

To deploy Reflection and a transform directly with MSI

  • At a command prompt, enter:

    msiexec /i path_to_administrative_installation_point\yourVersion.msi TRANSFORMS= yourCustomInstall.mst

    where yourVersion.msi is the specific version of the Reflection MSI that you downloaded (for example, SE11R1c.msi).