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: auto unisntall and install
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
‎Nov 29, 2009
07:10 AM
auto unisntall and install
how can i do all the following without promting the user for any thing so everything will start and be completed once the user lunch the setup.exe file?
[LIST=1]
Unistall the previous version of the file excep the parmanent registry entries.
Install the current version.
Lunch the new version
[LIST=1]
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 30, 2009
01:12 AM
What is your project type?
You can achieve this using installscript using silent uninstall and then install
You can achieve this using installscript using silent uninstall and then install
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 30, 2009
02:39 AM
My setup project is a Basic MSI project
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 30, 2009
02:42 AM
Create a function for silent uninstall in installscript and call it in in custom action.
use
nResult = LaunchAppAndWait("Msiexec.exe", "/x {} /qn", LAAW_OPTION_WAIT);
for silent uninstall.
use
nResult = LaunchAppAndWait("Msiexec.exe", "/x {
for silent uninstall.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 30, 2009
02:44 AM
any step-by-step?