Add MSI installer to my Setup

  • Thread starter Thread starter Kevin
  • Start date Start date
Do you want to create an installer project for a program you wrote or launch
a second MSI install from one you already have?

Please be more precise.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Do you want to create an installer project for a program you wrote or
launch a second MSI install from one you already have?

MSI doesn't support concurrent installations. Although MSFT says it's a
"deprecated" feature, it's so full of trapdoors that's it's never been fully
supported at all IMO (after extensive work with it).
 
Well, exactly....

I was going to suggest a custom install step at that response.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
I was going to suggest a custom install step at that response.

That won't work either unfortunately (not until it's too late to be useful -
long story):

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/_msiexecute_mutex.asp

In my experience a merge module is really the only way to do it. Most
3rd-party products don't provide one however should you need to install it
with your own product. In any case, MSI is very difficult to work with and I
wouldn't recommend it for anything beyond the simplest applications
(unfortunately, there's little else to rely on that's any better).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top