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
- :
- Re: Switching from Installscript installs to Installshield Basic MSI package installs
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
‎Dec 31, 2013
08:37 AM
Switching from Installscript installs to Installshield Basic MSI package installs
I wanted to ask if it is possible, that if I have an older version of a product I authored in InstallShield's InstallScript type project that is installed on a customer machine, then I release an updated version of that product using InstallShield Basic MSI, can I make the new version detect it and do an upgrade?
I was thinking that, from the MSI package, I could detect itand use a custom action to copy any required registry settings and files needed before calling the uninstaller for the older product, then install the new product.
Is this even possible? I am pretty new to MSI, and have made much progress recently, but we need a way to move our customers off of the old installers and get them into the new ones.
Any help is GREATLY appreciated. Thanks.
I was thinking that, from the MSI package, I could detect itand use a custom action to copy any required registry settings and files needed before calling the uninstaller for the older product, then install the new product.
Is this even possible? I am pretty new to MSI, and have made much progress recently, but we need a way to move our customers off of the old installers and get them into the new ones.
Any help is GREATLY appreciated. Thanks.
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 03, 2014
11:18 AM
The first thing I would try is to search for the old app by looking for its registry keys. If it is found, use a custom action to fully uninstall it in the OnBegin function. Then simply proceed to install the new basic msi app, and set all registry keys in the new basic msi project. To set a key, pick a component (conponents view), expand the component and click on the Registry Data node. Right-click to add new keys, string values, etc.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 09, 2014
12:45 PM
Thanks so much for the response. I am off to try your suggestions.