Hi folks: I have an Install file that installs Microsoft support routines that are missing on some of my end-users computers. I do not want an Uninstall procedure for these routines.SF Uninstall Settings does not have a "skip Uninstall" option. How do I skip generating Uninstall files, etc.? Thanks.
Announcement
Collapse
No announcement yet.
Skip producing "Uninstall" files
Collapse
X
-
Please clarify what you mean with "uninstall files" and "uninstall procedure".- Is this to avoid an entry in Programs and Features for the installer whch you built with Setup Factory, used to deploy these Microsoft files; or
- Is this to avoid the removal by the user of the Microsoft files which were deployed?
Ulrich
-
Hi Ulrich:
This is to prevent any type of reference to an Uninstall procedure after the Setup Factory completes. Yes, I could add a post-install procedure to remove everything, but would prefer not to have them there at all. Examples of what I don't want:
Uninstall short cut in the start menu
Uninstall link in the Windows Control Panel list = Nothing in the Windows registry
Uninstall.exe in any folder
In other words, an option to skip generating the Uninstall. Hopefully this option is already there, but I have not noticed it ... :-)
Comment
-
What you want can be done in multiple ways.
1) If you NEVER want an entry in the Apps and Features section, then you can clear the option for the creation of the Uninstall, in the Settings, as shown below:
2) If you SOMETIMES want to skip the creation of the entries in the registry, based on a certain condition, then you can set a global variable:
Code:_InstallStages["CreateUninstall"] = false;
This can be found in the help file...
Ulrich
Comment
Comment