uninstaller

Replace or customize modal uninstallation windows in Inno Setup

故事扮演 提交于 2020-06-05 05:41:22
问题 Is it possible to replace next uninstalling modal windows with custom modal windows or pages in Inno Setup: 回答1: Both messages are shown always, except for silent (or very silent) uninstallations. What you can do: Change message texts: [Message] ConfirmUninstall=Are you sure you want to completely remove %1 and all of its components? UninstalledAll=%1 was successfully removed from your computer. UninstalledMost=%1 uninstall complete.%n%nSome elements could not be removed. These can be removed

Custom Uninstall not deleting file in .net Application

女生的网名这么多〃 提交于 2020-02-06 11:22:16
问题 I have a settings file created when user run the wpf application. I have created a custom uninstaller to delete some registry keys related to my app and to delete this setting file. But my file is not getting deleted. Here is the code - public override void Uninstall(IDictionary savedState) { base.Uninstall(savedState); try { using (RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)) { if (registryKey.GetValue(

Why app installed using MSI installer would disappear from Windows

我的未来我决定 提交于 2020-02-04 05:08:22
问题 We made some changes to the installation and updating process of our Windows app recently, and some users are now complaining that Windows sometimes automatically deletes the main application .exe file. It usually occurs after users update app using built-in web update feature. The feature is implemented using .msi built in A dvanced Installer tool . We are struggling to figure out what is causing this, and haven't found a way to consistently reproduce the issue (though we've seen it happen

Uninstall file in Start Menu applications list isn't always shown

点点圈 提交于 2020-01-30 12:26:04
问题 After installing the application, the installer and uninstaller files are properly saved in the "install application folder" and in the "Start menu application folder" rispectively. For example: - "install application folder" = "C:\Users\\AppData\Roaming\" - "Start menu application folder" = "C:\Users\\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\" Sometimes, though, the uninstaller file is not displayed into the application folder of the Start Menu Installed Applications List (list

How to execute program before the uninstallation starts?

不羁的心 提交于 2020-01-20 05:44:44
问题 Can InnoSetup execute a program before the uninstallation starts? My program creates some registry values. I have an executable that can remove those registry values and my question is, can InnoSetup run that executable before the uninstallation starts? 回答1: See the documentation on Setup Script Sections , particularly the UninstallRun one at the bottom of the tree: [UninstallRun] Filename: "{app}\INIT.EXE"; Parameters: "/x" If you need to do something more complex, you can also do it in code

How do you uninstall another program in wix installer?

我只是一个虾纸丫 提交于 2020-01-02 05:30:16
问题 I have lost the GUID's for my old installer. I managed to get the upgrade id using Orca but it still does not remove the old version from the programs and features list. How can I uninstall an old msi/bootstrapper with a completely new one? 回答1: If you have a MSI to uninstall (i.e. not a bootstrapper) then you should be able to uninstall it with WIX <Upgrade> element, by specifying it there like that: <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is installed." />

Use Inno Setup to delete another application not installed with Inno Setup during installation

a 夏天 提交于 2020-01-01 03:33:09
问题 I have an old VB6 application that is deployed using a very old 16 bit version of InstallShield. I have created a new installer with Inno Setup to be 64 bit friendly for my VB6 application with updates. All of my users already have the existing InstallShield version installed. Currently, I have Inno Setup working. The problem is, I do not want to overwrite the old InstallShield installation files, so my Inno Setup installs to another directory. This causes problems because now I have two

How to remove docker installed using wget? [closed]

烂漫一生 提交于 2019-12-29 10:08:26
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I've installed docker following installation tutorial on docker.com, using wget https://get.docker.com/ | sh command. Now i need to remove it entirely. apt-get remove docker , apt-get --auto-remove docker , apt-get remove docker.io , apt-get --auto-remove docker.io or any other combination doesn't work, since I

Powershell: Uninstall Software that has prompts for user input

╄→尐↘猪︶ㄣ 提交于 2019-12-29 02:12:09
问题 Does anybody know if it is possible to uninstall software through PowerShell if it prompts for user input? I have multiple scripts that can uninstall just about anything, except for the one software that I need it to uninstall. I'm specifically trying to uninstall PDFForge toolbar which is installed when downloading PDFCreator. None of the scripts that I've written fail, they just hang when run, I believe because the uninstall process is asking for user input to proceed. 回答1: PowerShell isn't

How to set the status message in [Code] Section of Inno install script?

随声附和 提交于 2019-12-23 07:55:57
问题 I know that StatusMsg can only be used in the [Run] selection. I want to use the same in the [Code] Selection, Please Help me to solve this, Thanks in advance, Regards Samuel J 回答1: You can change the status label contents at runtime using: WizardForm.StatusLabel.Caption := 'Intalling WibbleTech Widget' See the Support classes reference for the full list of controls and properties you can change. 来源: https://stackoverflow.com/questions/8612117/how-to-set-the-status-message-in-code-section-of