1. msiexec /i <path to your msi file> PROPERTY=somevalue from the command
prompt, although it looks to me as if you are doing this programmatically,
but anyway see msiexec command line options in MSDN.
2. They show up as properties in the setup that you use in brackets. What do
you want to do with them?
3. See the MSI APIs such as MsiInstallProduct.
4. Pass the install directory as TARGETDIR=<folder>. If you search MSDN for
TARGETDIR you'll see examples. You'd pass it into MsiInstallProduct in the
command line property.
I assume you'll launch the MSI files silently so that the user isn't shown
another dialog to enter the install location.

Signature
Phil Wilson
[Microsoft MVP-Windows Installer]
Definitive Guide to Windows Installer
http://apress.com/book/bookDisplay.html?bID=280
> Hi,
>
[quoted text clipped - 10 lines]
>
> Thanks in advance.
segal.aviad@gmail.com - 13 Dec 2005 08:06 GMT
Hi,
Thanks for the quick reply.
I plan on building an installer using a few setup projects, and a
windows form application that will launch them.
Your assumption is correct, I plan to launch them silently. This is
where the application comes in - it is meant to present a user friendly
GUI.
Is the "package" refferd to in the API the MSI file? Can the
MsiInstallProduct be used with an MSI generated by a setup project?
Thanks
Phil Wilson - 13 Dec 2005 18:37 GMT
The package is the path to the MSI file, correct. The APIs work on MSIs
generated by anything (there are currently around 20 tools that build MSI
files).

Signature
Phil Wilson [MVP Windows Installer]
----
> Hi,
> Thanks for the quick reply.
[quoted text clipped - 10 lines]
>
> Thanks