PDA

View Full Version : Urgent question with install msxml4.msm



plipli
03-27-2002, 04:42 PM
Hi there,

I want to install Micosoft XML parser version 4 with my InstallShield Professional 5.5 setup.exe. Does someone have any idea for making it? Actually I included both Windows Installer InstMsiW.exe and InstMsiA.exe in the setup.exe, but I don't know how to do next? Thank you in advance!

Regards,
Plipli :)

tw0001
03-28-2002, 10:36 PM
do a silent install of the Windows Installer engine with LaunchAppAndWait, e.g.

instmsiw.exe /q /c:"msiinst.exe /i instmsi.msi /q"

or

instmsia.exe /q /c:"msiinst.exe /i instmsi.msi /q"

depending on the platform, then install your msi file simply by doing a LaunchAppAndWait on it.

Ted.