uninstaller

How to set the progress bar value in the [Run] section of the Inno Setup install script? [duplicate]

风流意气都作罢 提交于 2019-12-21 17:44:04
问题 This question already has an answer here : Inno Setup: How to manipulate progress bar on Run section? (1 answer) Closed last year . This is similar to this question: Inno Setup Simple progress page for Run section If I'm adding some MSI files to my Inno Setup script, I can install these files from the [Run] section. At that time the progress bar shows 100% and shows the StatusMsg above the progress bar. I want manually set the value of the progress bar in the [Run] section, say a value of 50%

Inno Setup uninstall executable location and name

时光总嘲笑我的痴心妄想 提交于 2019-12-21 09:53:54
问题 Can I configure it to be placed in the same location C:\windows\something\ that .msi files produced by windows installer are hidden in, instead of in C:\Program Files\MyAppFolder\ ? Also can I change the name to something more obvious in intent than unins000.exe? 回答1: The uninstaller path can be changed by setting a value in the script file: [Setup] UninstallFilesDir={win}\Installer There doesn't appear to be a way to change the name. 回答2: With the shipping InnoSetup there is currently no way

Change the default name of an Inno Setup uninstaller to avoid naming conflicts

旧时模样 提交于 2019-12-21 09:15:05
问题 I need to install a couple of installers in the same directory so it conflicts with the Inno Setup uninstaller name unins000.exe and unins000.dat Is there a way to change the default name of an Inno Setup uninstaller? 回答1: This is similar to Elektrostudios' answer, and is what worked for me: Filename: {cmd}; Parameters: "/C Mkdir ""{app}\Uninstallers\{#MyAppName}"""; Flags: RunHidden WaitUntilTerminated Filename: {cmd}; Parameters: "/C Move ""{app}\unins000.exe"" ""{app}\Uninstallers\{

What to use for creating a quick and light setup file?

谁说胖子不能爱 提交于 2019-12-19 04:06:23
问题 I am considering helping an open-source gaming project with creating their setup file. The game is currently weights around 300 MB and is packaged in a zip file, playable straight after it's unarchived. The zip file contains separate executables for Windows, Mac, and Linux as well as compressed data files that are used on all 3 platforms. My goal is to create a lightweight and possibly portable installation package that could encapsulate the data and provide users with quick install/uninstall

Wix toolset: complete cleanup after “disallowing uninstallation of component since another client exists”

房东的猫 提交于 2019-12-19 00:41:13
问题 today I found out that my installer does not uninstall correctly anymore. Meaning my app is not shown in control panel anymore after uninstalling from there but all files are still present. I looked at the log files and I see a lot of "disallowing uninstallation of component since another client exists" which afaik means I screwed up.. So what is the best way to cleanup my pc and to prevent it from happening in the future? What could have caused this? afaik a not completely uninstalled

Unable to completely uninstall SOAPUI

我与影子孤独终老i 提交于 2019-12-13 07:33:17
问题 when uninstalling the SOAPUI from windows 10 or windows 7 it will uninstall the application but the smart bear folder in c:/program files is not removed. I am uninstalling soapui with the uninstaller.exe in the smartbear folder. can anybody help me with any suggestions as to why the smart bear folder is not being deleted when we use the uninstaller 回答1: In general, any software installation, it keeps track of the file being installed. And the same files gets removed on uninstallation .

How can I undo Permanent flag in Visual Studio Setup Project

▼魔方 西西 提交于 2019-12-12 04:34:51
问题 I created a setup project using Visual Studio 2010. I accidentally checked the "Permanent" property on one of my dlls, not realizing what I was doing. From here, I've learned once you turn that setting on, turning it off will not fix the problem. The file I originally marked Permanent will never be removed on an uninstall even though I've changed the Permanent property back to false. But, there's gotta be a way, right? There has to be something in the registry but I'm not finding anything.

how to terminate installer if unstallation of legacy version of software is cancelled before executing it?

…衆ロ難τιáo~ 提交于 2019-12-11 09:45:33
问题 I have created an installer(myinstaller) using innosetup to install an application (myapp). The code snippet is : function legacy_check(): Boolean; begin ShellExec('runas', 'rundll32.exe', 'dfshim.dll,ShArpMaintain SecretsUtility.application, Culture=neutral, PublicKeyToken=0000000000000000, processorArchitecture=amd64', '', SW_HIDE, ewWaitUntilTerminated, ErrorCode); Result := True; end; function InitializeSetup(): Boolean; begin Result:=legacy_check(); // after this line only inno setup

When using NSIS, how do I create an uninstaller with custom pages?

a 夏天 提交于 2019-12-11 06:28:09
问题 I would like to have an uninstaller with custom NS pages. How do I do that with NSIS? 回答1: Example: UninstPage custom un.mypage Function un.mypage ;func body here FunctionEnd "un." is required for uninstall functions. 回答2: Function un.mypageCreate ;call nsDialogs or InstallOptions functions here FunctionEnd UninstPage custom un.mypageCreate 回答3: The Function has to begin with un. (e.g. "un.myPageCreate") though I'm not sure that is the problem the error message is referring to. 来源: https:/

izPack creates an uninstaller that doesn't work in Windows “Programs and Features”

早过忘川 提交于 2019-12-10 16:45:06
问题 I'm working on a graphic installer for a java project using izPack 4.3.4, the installation goes well but when I try to uninstall it by clicking on his reference in "Programs and Features" window it shows the message: Error: Unable to access jarfile C:\Program Files (x86)\myproject\uninstaller\uninstaller.jar The fact is that I choosed to put and rename the uninstaller in the root install path of my program and not in \uninstaller dir. See the XML: <info> ... <uninstaller name="uninstall.jar"