I have made a transformer to Borlang Delphi 6, and what I want is to run this in unattended mode, without the user to see the dialog boxes.
It's a response transformer, witch include answer to all dialog boxes under the installation. Including the license to the product.
When I run this msiexec command:
msiexec /i "Borland Delpfi 6.msi" TRANSFORM=Delphi6.mst
The installation starts, but when the license dialog box appear the license is not there. I have tried several other msiexec command (with /qn and other parameter).
There is a Setup.exe and a setup.ini file in my project, and when I run Setup.exe the license appear in the license dialog box.
But I can't figure out how to run this in silent/unattended mode.
I have tried to run setup with a lot of different parameters, but it doesn't behave like I want.
The setup.ini looks like this:
Info]
Name=INTL
Version=1.00.000
DiskSpace=8000 ;DiskSpace requirement in KB
[Startup]
CmdLine= TRANSFORMS="Delphi6.mst"
SuppressWrongOS=Y
ScriptDriven=0
ScriptVer=1.0.0.1
MsiVersion=2.0.2600.0
EnableLangDlg=N
DoMaintenance=Y
SuppressReboot=Y
Product=Borland Delphi 6
PackageName=Borland Delphi 6.msi
Do anybody know how I can solve this problem.
Wenche