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
- :
- Support application side by side installation
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Apr 09, 2014
03:58 AM
Support application side by side installation
Hi
I have a request to support side by side installation of our application so I have updates my Basic MSI project with product code, product name and package code and also changed the destination folder, registry keys and shortcuts so now I can install 2 versions on the same machine.
Now when uninstalling version 2.0 it also uninstall version 1.0 files, I found that if I also change the upgrade code the problem is solved but then I will not be able to make version 2.0 as a major upgrade of 1.0 instead of side by side.
But even if I change the upgrade code the shortcuts of version 2.0 are not removed,
I did not updated the GUID of the components is it a must ?
What is the best and automatic was to update components id in basic msi project ?
Thanks
I have a request to support side by side installation of our application so I have updates my Basic MSI project with product code, product name and package code and also changed the destination folder, registry keys and shortcuts so now I can install 2 versions on the same machine.
Now when uninstalling version 2.0 it also uninstall version 1.0 files, I found that if I also change the upgrade code the problem is solved but then I will not be able to make version 2.0 as a major upgrade of 1.0 instead of side by side.
But even if I change the upgrade code the shortcuts of version 2.0 are not removed,
I did not updated the GUID of the components is it a must ?
What is the best and automatic was to update components id in basic msi project ?
Thanks
(3) Replies
‎Apr 10, 2014
10:33 AM
We have done this kind of thing two different ways:
If you want to be able to start either install from short cuts and uninstall independently then yes change the GUID and include the release number in the program files install directory to keep the releases separate. You will be able to run either version and also uninstall either version.
If you just want to keep the old version in case someone needs to go back to it then a way is toe script a directory name based on last version and create the directory in the BeforeUpdateUI procedure then copy the current files there. You could perhaps also script the creation of a shortcut for the copied version. Then you can install the new version in the normal way but the older version is still there and can be run if it is needed.
If you want to be able to start either install from short cuts and uninstall independently then yes change the GUID and include the release number in the program files install directory to keep the releases separate. You will be able to run either version and also uninstall either version.
If you just want to keep the old version in case someone needs to go back to it then a way is toe script a directory name based on last version and create the directory in the BeforeUpdateUI procedure then copy the current files there. You could perhaps also script the creation of a shortcut for the copied version. Then you can install the new version in the normal way but the older version is still there and can be run if it is needed.