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: Differences on uninstalling an application
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
Mar 20, 2008
12:05 PM
Differences on uninstalling an application
Hi,
I would like to ask what are the difference between uninstalling your application on the Add/Remove Programs, running the setup.exe and selecting Remove and lastly running msiexec /x {ProdGuid}.
What are the differences between the three scenarios?
I would appreciate any help.
Thanks! 🙂
I would like to ask what are the difference between uninstalling your application on the Add/Remove Programs, running the setup.exe and selecting Remove and lastly running msiexec /x {ProdGuid}.
What are the differences between the three scenarios?
I would appreciate any help.
Thanks! 🙂
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Mar 20, 2008
06:16 PM
For a Basic MSI project, running from Add or Remove Programs and running msiexec /x {prod-uct-code} are essentially the same, a basic-UI uninstaller that skips the UI sequence.
Running setup.exe and selecting Remove is different in that it runs the UI sequence of the package (that's what enables you to select Remove, for example), meaning any actions in the UI sequence will still run, but other than that it's about the same.
Running setup.exe and selecting Remove is different in that it runs the UI sequence of the package (that's what enables you to select Remove, for example), meaning any actions in the UI sequence will still run, but other than that it's about the same.