views:

71

answers:

0

I have an application BACK which is packaged in an Merge Module, and installed with another application FRONT which is in the main MSI package. These are created via projects in MS VisStudio 2008.

The user can configure the FRONT application through the MSI's UI with a small set of parameters. I need to access at least one of these parameters (in this case a URL) so that at runtime BACK can access FRONT.

  • In MS Visual Studio, I can't view a UI for the MSM project to prompt the user.
  • Parameters set in the MSI's UI are apparently not passed through to the MSM -- a class in the MSM (derived from System.Configuration.Install.Installer) is used, but its Install function is called w/an empty IDictionary.

I've searched Google, MSDN, SO and others but haven't even found anyone (using VisStudio) with this question. MSDN seems to have a lot of info on abstractions, with no reference to any tool, it leaves me to think it's intended for developers of install tools rather than of install packages.