I have two issues about installs.
First, what happens if a user does a full install of my program, which creates an uninstaller. Then, they install a subsequent update of the program, containing only some of the files that the full install contains, but perhaps some new files.
Assuming that the uninstallers have the same name (and it will lead to massive clutter if they don't, as users install multiple versions), what happens? Do they get merged, or does the new (smaller) uninstall replace the old one?
As a slightly worse question, my previous program versions have been installed with an installer created with InstallShield 5.0 Free Edition. That also creates an uninstall, with the same name as I hope to call the uninstaller created by my SetupFactory install. Will that merge, or replace? Again, the biggest issue is what happens if they only install a partial update with my new SetupFactory install, but had previously installed a full version (with more files) with the InstallShield install?
First, what happens if a user does a full install of my program, which creates an uninstaller. Then, they install a subsequent update of the program, containing only some of the files that the full install contains, but perhaps some new files.
Assuming that the uninstallers have the same name (and it will lead to massive clutter if they don't, as users install multiple versions), what happens? Do they get merged, or does the new (smaller) uninstall replace the old one?
As a slightly worse question, my previous program versions have been installed with an installer created with InstallShield 5.0 Free Edition. That also creates an uninstall, with the same name as I hope to call the uninstaller created by my SetupFactory install. Will that merge, or replace? Again, the biggest issue is what happens if they only install a partial update with my new SetupFactory install, but had previously installed a full version (with more files) with the InstallShield install?
Comment