cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
richardh
Level 5

Multi instance install - possible to use the GUI

Here's a quick one for you - I've been asked to investigate if it's possible to launch our BasicMSI application into "new instance install" mode without using the command line, by simply double-clicking on the .msi file. This must also allow the application to be able to run in normal maintenance mode as well.

Our previous Installscript install allowed this, and they're after similar functionality.

I'm pretty sure it's not possible, but if it is some pointers on where to look would be appreciated.
Labels (1)
0 Kudos
(2) Replies
Christopher_Pai
Level 16

No. Double clicking the MSI for an MSI that's already installed will launch maintenance mode for the default instance.

The only way to install a new MSI instance is to pass the MSINEWINSTANCE property and set the TRANSFORMS property to the name of the embedded transform inside the MSI for the additional MSI. This is what Setup.EXE is doing for you.

Details are at:

http://msdn.microsoft.com/en-us/library/windows/desktop/aa369528(v=vs.85).aspx
0 Kudos
richardh
Level 5

That's what I thought - thanks Chris 🙂
0 Kudos