installer

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%

Questions about add firewall exception in wix installer by firewall extension

自古美人都是妖i 提交于 2019-12-21 17:41:45
问题 I am new to Wix installer . I am trying to add firewall exception for my program. My code is as follow: <Component Id="_VIEW.EXE" Guid="*" Transitive="yes"> <File Id="view.exe" Name="view.exe" KeyPath="yes" Source="$(var.INSTALLSOURCE)\view.exe"> <fire:FirewallException Id="view_firewall_domain_tcp" Name="View" Protocol="tcp" Scope="any" IgnoreFailure="yes" Profile="domain" /> <fire:FirewallException Id="view_firewall_domain_udp" Name="View" Protocol="udp" Scope="any" IgnoreFailure="yes"

How to get IzPack tocheck for an existing version of the software?

杀马特。学长 韩版系。学妹 提交于 2019-12-21 17:21:18
问题 I have an application for which we use IzPack to create the installer. The installer is working fine in its current state, however, I need to add functionality that enables it to check whether an existing version of the software has been installed. I understand IzPack supports this out of the box using its CheckedHelloPanel, unfortunately that only works for Windows, as it appears to depend on the windows registry. Is there a way to configure IzPack such that it is able to detect existing

If the user uninstalls your program, what do you do with the user data? [closed]

社会主义新天地 提交于 2019-12-21 15:12:12
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 years ago . I'm a developer in need of ammo. If the user chooses to uninstall your program, what do you do with the data your program kept in HKEY_CURRENT_USER, and other parts of the user profile? The program stores user data (logs, etc) in the user folders. The client wants an

How to extract a self extracting exe from commandline

浪尽此生 提交于 2019-12-21 13:10:34
问题 Is there a way to extract a self extracting exe from commandline in windows? I have a self extracting exe which is of type RAR. I want to extract the contents of this RAR only with the help of windows and not using any other tools (like 7zip, Unrar etc) which helps to extract. Also, I want to do it from the command line only. Are there any utilities in windows which I can use to extract the self extracting exe file from commandline? 回答1: You might be able to get the self-extacting RAR archive

How to make a .pkg that the Mac Installer will simply install (copy) files from?

随声附和 提交于 2019-12-21 11:39:09
问题 My goal is to create a .pkg that will simply instruct the Mac Installer to simply install files, like fonts, from the .pkg to a directory when run. I've tried using Xcode, but it seems more application oriented. How do I configure Xcode with a generic document so I can Build and Archive, then Share using the Organizer to create the .pkg? The Copy Files Target appears to be in use only at build time, so that doesn't seem to be much help. 回答1: You should use the PackageMaker application, not

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\{

Windows Service won't automatically start after reboot [duplicate]

混江龙づ霸主 提交于 2019-12-21 07:27:22
问题 This question already has answers here : “A timeout was reached while waiting for the service to connect” error after rebooting (6 answers) Closed 6 years ago . My automatically starting windows service fails to start only on reboot. I have a windows service created in C# and installed via a Wix created installer. The service is set up to start automatically. The service is installed and run under the NT AUTHORITY\NETWORK SERVICE. When the service is started, it first makes an external web

How do I install PyOpenSSL on Windows 7 64-bit?

不羁岁月 提交于 2019-12-21 07:13:28
问题 To get Scrapy working on HTTPS, I need PyOpenSSL, but I can't seem to get this to work. So, is there a 64-bit version available? I don't see one... I have installed the 32-bit version but... I currently get this error back from Scrapy: ERROR: Error downloading <https://SOME_PRIVATE_URL_HERE>: [Failure instance: Traceback: <class 'scrapy.exceptions.NotSupported'>: HTTPS not supported: install pyopenssl library Does anyone have a clue how to obtain or compile a 64-bit version? Or is that