installer

How can I create an MSI setup?

最后都变了- 提交于 2019-12-17 15:15:41
问题 I've created setups for all my Delphi tools with Inno Setup for years. Now some users rather want an MSI installation package, so they can deploy the setups from a central server to all workstations. How do I create one? Do I have to buy Visual Studio or some other product? 回答1: You can use Wix (which is free) to create an MSI installation package. WiX Tutorial - Creating an Installer MSI with Wix 回答2: If you don't understand Windows Installer then I highly recommend The Definitive Guide to

Visual studio 2017 installer won't run after extracting

守給你的承諾、 提交于 2019-12-17 11:45:43
问题 visual studio 2017 community.exe won't run after extracting to the temp. OS: windows 10 x64bit Setup : community version in the temp folder bootstrapper log says, Beginning of the log. Start Time: 3/26/2017 1:14:54 AM VisualStudio Bootstrapper:3/26/2017 1:14:54 AM: Current Optin root path does not exists VisualStudio Bootstrapper:3/26/2017 1:14:55 AM: Commandline arguments = and the dd_vs_community_decompression_log says [3/26/2017, 11:17:47] === Logging started: 2017/03/26 11:17:47 === [3/26

How to create Java webapp installer (.exe) that includes Tomcat and MySQL?"

岁酱吖の 提交于 2019-12-17 10:24:04
问题 How to create a installer using Java that combine tomcat, mysql and war file and come out a final exe? 回答1: You could use any installer, really. I personally have used InnoSetup, which is quite simple, but can still perform almost any task at installation time. In your case, you probably want to place the Tomcat files somewhere, webapp included. Customize some configuration files and run the MySQL installer in silent mode. All of which is perfectly possible with InnoSetup. If you need more

Create Windows Installer for Java Programs

别来无恙 提交于 2019-12-17 08:23:51
问题 This question was migrated from Software Engineering Stack Exchange because it can be answered on Stack Overflow. Migrated 8 years ago . I'm a Java beginner. I already created a simple GUI application that display will "hello world" label. But, how can I create an installer from .java or .jar for windows. Let's say that I have created a useful application and want to share it with my friends to install it in their PC without they need to know what is JRE, or how to download JRE. 回答1: Deploy

How to make an installer for my C# application?

一世执手 提交于 2019-12-17 08:09:08
问题 I have created an application (C#, Windows Forms) on Visual Studio 2008, and now I want to make installer of this application. How can this be done? I want my installer to Copy all the files that my application is using to a user chosen path (copy the files to the chosen, some for the server-side application and some for the client side). Also install .NET 3.5 Check for SQL Server or SQL Server Express Edition How can I do it? 回答1: Add a new install project to your solution. Add targets from

Visual Studio 2017 Installer Project - include VC++ 2015 Redistributable

僤鯓⒐⒋嵵緔 提交于 2019-12-17 07:55:31
问题 I am creating the installer for my application using a "Visual Studio Installer" project type in Visual Studio 2017. I want my installer to install visual c++ redistributable 2015 with my application. I've downloaded the vc_redist.x86.exe file, included it in my project, and I'm trying to do the install as a custom action on "install". I am launching with the arguments /install /passive /norestart . When I execute my installer, when it does the custom action, I get this error: There is a

Visual Studio 2017 Installer Project - include VC++ 2015 Redistributable

亡梦爱人 提交于 2019-12-17 07:54:19
问题 I am creating the installer for my application using a "Visual Studio Installer" project type in Visual Studio 2017. I want my installer to install visual c++ redistributable 2015 with my application. I've downloaded the vc_redist.x86.exe file, included it in my project, and I'm trying to do the install as a custom action on "install". I am launching with the arguments /install /passive /norestart . When I execute my installer, when it does the custom action, I get this error: There is a

Java Application Installers [closed]

别来无恙 提交于 2019-12-17 06:29:36
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I'm not looking for java-web-start, I'm looking for a thick-client application installation toolkit. I've got a stand-alone

Can't upgrade Android SDK Tools

若如初见. 提交于 2019-12-17 06:29:31
问题 I'm trying to upgrade the Android SDK tools from revision 15 to revision 16. The update fails, claiming that a "folder failed to be moved": Failed to rename directory C:\android-sdk\tools to C:\android-sdk\temp\ToolPackage.old01 I tried disabling my antivirus (as this problem has been reported by some people in 2009), and it didn't work. A fresh reboot didn't work, either. I'm encountering this problem on two different Windows 7 machines. I did not encounter this problem upgrading from

How to modify .NET config files during installation?

。_饼干妹妹 提交于 2019-12-17 03:35:37
问题 I use the app.config file to store some values (path to a mapping database, data connection selections). These settings differ on the user machines and I would like the installer to set them right. Is there an installer that can work with .NET config files during setup and allow me to create some dialogs that would help me fill in these values ? I know this question may be similar to : Initializing user.config or app.exe.config during install, but I am not limited to VS 2008 setup project and