installer

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

How to change the size of small wizard image and have custom fields in inno setup

两盒软妹~` 提交于 2019-12-19 03:45:32
问题 I want all my inno set up pages to look like below : 回答1: The small wizard image is accessible using WizardForm.WizardSmallBitmapImage which is of type TBitmapImage. You can change the size and position of this control to suit your design (within the top panel). You can also hide/reposition the labels ( WizardForm.PageNameLabel and WizardForm.PageDescriptiontLabel ) in the same way. As for the extra fields, see this question. 来源: https://stackoverflow.com/questions/11193811/how-to-change-the

I require a MSI Custom action that copies a file from the MSI source directory

喜欢而已 提交于 2019-12-19 03:39:34
问题 I'm creating a installer for a c# windows project using VS 2008. I'm trying to write a custom action that copies a settings file from the source directory of the MSI file stored on a file server (e.g. \server\fileshare\myappinstaller\mysetting.xml) to the target directory on the computer on which my application is been installed (e.g. C:\Program Files\My App). The settings file can't be added in to the installer as it will contain settings with will be unique to the customer installing the

Android ADB redistribution [closed]

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-19 03:15:19
问题 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 4 years ago . Are you allowed to redistribute the Android ADB to the end users? Is there a distributive / package that might be included in the installer? We are considering to use it in order to provide a USB connectivity between our Android app and a desktop app. Is there any better ways you can suggest to easily establish

Mac app store productbuild

ぐ巨炮叔叔 提交于 2019-12-19 02:08:36
问题 Apple's document on submitting an app to the Mac App store contains this example use of the command productbuild, from in /Developer/usr/bin/. productbuild \ --component build/Release/Sample.app /Applications \ --sign "3rd Party Mac Developer Installer: Name1 Name2" \ --product product_definition.plist Sample.pkg When I run this command on my Sample app, I get the error: productbuild: error: No product definition plist found at "product_definition.plist". What is this product_definition.plist

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

How to show a hyperlink in Inno Setup?

和自甴很熟 提交于 2019-12-18 19:32:49
问题 I'm making a validation in my Inno Setup installer to check whether or not a Microsoft update is installed on the machine, if not, I'm showing a simple message box telling the user that the update is required, this is the message code: MsgBox( 'Your system requires an update supplied by Microsoft. ' + 'Please follow this link to install it: ' + 'http://www.microsoft.com/downloads/details.aspx?FamilyID=1B0BFB35-C252-43CC-8A2A-6A64D6AC4670&displaylang=en', mbInformation, MB_OK); I want to make

InnoSetup - Check if visual studio 2010 crt redist is installed, if not then run installer

天大地大妈咪最大 提交于 2019-12-18 17:32:30
问题 I currently have this in this part of Inno script [Run] Filename: {app}\bin\vcredist_x86.exe; Parameters: "/q:a /c:""VCREDI~3.EXE /q:a /c:""""msiexec /i vcredist.msi /qn"""" """; WorkingDir: {app}\bin; StatusMsg: Installing Visual Studio 2010 C++ CRT Libraries... It will run vcredist installer during app installation. But the problem with this is that if the user has it already installed it throws things like Repair/Remove Already newer version detected Is there any way to avoid this and only

How to automate installer testing

我的未来我决定 提交于 2019-12-18 13:19:33
问题 I'm wondering if anyone has any best practices for automating the testing of installers on various machines with potentially different hardware / software profiles and by specifying various options to the installer. The idea would be that I could write "unit test like" code to set up a machine, run the installer, then test that certain things are true. Tests might look similar to: Test: Boot Machine without IIS Run Installer Assert Installer Had Errors Test: Boot Machine with IIS Run

Setting environment variables requires reboot on 64-bit

蹲街弑〆低调 提交于 2019-12-18 12:46:45
问题 I am working on an installer using Wix 3.5 that needs to set the system PATH environment variable. This is how I am setting the environment variable: <Directory Id="DirectoryName"> <Component Id="ComponentID" Guid="{BE20AF67-5943-4AF4-BE66-226E2D4B844F}"> <Environment Id="EnvironmentID" Name="PATH" Action="set" Value="the path" Part="last" Separator=";" System="yes" /> </Component> </Directory> This seems to be working on 32-bit systems without requiring a reboot for the changes to be