This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Urgent:Another version of this product is already installed
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 26, 2011
03:02 AM
Urgent:Another version of this product is already installed
Please guide me on below issue.
I have Basic MSI installer-test1.ism
which supports multiple instance of 10. I have installed it on my machine.
and there is one more Basic MSI installer file test2.ism.
Actually,what i want to achieve is that if i installed test1 on my machine.
and want to upgrade this installation with test2 with no change in of icon.
That mean same icon will be used to launch test1.
but when I try to install test2 on machine when already test1 is installed.
I am getting following error.
[Window Title]
Windows Installer
[Main Instruction]
Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
[OK]
How I can get rid of this issue?
DO i need to implement Multi Instance support for test2 ?
Is there any need of product code/package code change?
I am newbie to Install shield.
I am using IS 2011 Hotfix A Professional Edition .
Please let me know if you need any information.
I have Basic MSI installer-test1.ism
which supports multiple instance of 10. I have installed it on my machine.
and there is one more Basic MSI installer file test2.ism.
Actually,what i want to achieve is that if i installed test1 on my machine.
and want to upgrade this installation with test2 with no change in of icon.
That mean same icon will be used to launch test1.
but when I try to install test2 on machine when already test1 is installed.
I am getting following error.
[Window Title]
Windows Installer
[Main Instruction]
Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
[OK]
How I can get rid of this issue?
DO i need to implement Multi Instance support for test2 ?
Is there any need of product code/package code change?
I am newbie to Install shield.
I am using IS 2011 Hotfix A Professional Edition .
Please let me know if you need any information.
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 26, 2011
07:56 AM
You need to configure:
Major OR Minor upgrade
Minor Upgrade can be packaged as:
Full msi or msp PATCH.
The keywords for the purpose would be:
REINSTALL and REINSTALLMODE
The abovementioned public properties need to be mentioned in the command-line to get rid of the error in case you want to stick to your msi package.
Something like:
msiexec /i REINSTALL=ALL REINSTALLMODE=vomus
Or you would need a bootstrapper to pass REINSTALL and REINSTALLMODE to the msi.
You can avoid this by creating a Major Upgrade or a patch.
Major OR Minor upgrade
Minor Upgrade can be packaged as:
Full msi or msp PATCH.
The keywords for the purpose would be:
REINSTALL and REINSTALLMODE
The abovementioned public properties need to be mentioned in the command-line to get rid of the error in case you want to stick to your msi package.
Something like:
msiexec /i
Or you would need a bootstrapper to pass REINSTALL and REINSTALLMODE to the msi.
You can avoid this by creating a Major Upgrade or a patch.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 26, 2011
08:22 AM
Thank You MSIYER,
I am not aware of this.
I am reading help files from Install Shield and will back to you if I don't find solution.
Thanks
Vikram
I am not aware of this.
I am reading help files from Install Shield and will back to you if I don't find solution.
Thanks
Vikram
