InstallShield Tuner allow users to customize an existing Windows Installer package (.msi).
1. Users can open an existing MSI package, make changes, and then save the changes.
2. When users save the changes, a transform file (.mst) is created.
NOTE: The original Windows Installer package remains untouched in this whole process.
The whole idea of transforms is that you can customize your MSI package by creating transforms. At run time, you can merge the transforms (your changes) with the original MSI package to apply your changes.
To install the package and transform silently, you can use the following command line:
msiexec /i /T /qn
(/qn stands for silent install)
You can also use Packaging Wizard in InstallShield Tuner to bundle your original installation and transforms.
In the Packaging Wizard, you can provide command line arguments (/qn in this case) if you want to run the installation silently.
If you need further assistance, please let me know.