wix

Installers: WIX or Inno Setup? [closed]

我是研究僧i 提交于 2020-01-20 13:34:05
问题 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 7 months ago . I'm comparing these two tools. The impression I have is: Inno Setup does not produce an MSI, but can do everything WIX can do WIX does produce an MSI, but has a steep learning curve Do you agree with this characterization? What other differences are there? How does WIX#

Installers: WIX or Inno Setup? [closed]

偶尔善良 提交于 2020-01-20 13:33:36
问题 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 7 months ago . I'm comparing these two tools. The impression I have is: Inno Setup does not produce an MSI, but can do everything WIX can do WIX does produce an MSI, but has a steep learning curve Do you agree with this characterization? What other differences are there? How does WIX#

Installers: WIX or Inno Setup? [closed]

♀尐吖头ヾ 提交于 2020-01-20 13:33:14
问题 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 7 months ago . I'm comparing these two tools. The impression I have is: Inno Setup does not produce an MSI, but can do everything WIX can do WIX does produce an MSI, but has a steep learning curve Do you agree with this characterization? What other differences are there? How does WIX#

How to create a MSI Windows installer for a Java program?

空扰寡人 提交于 2020-01-20 05:16:07
问题 I'd like to create a single Microsoft Installer file for a Java program. I can't use Netbeans or any Maven plugin to do it because I can't use Oracle Java and/or JavaFX (mainly for legal reasons) and both seem to use Oracle native deployment + JavaSE 1.8. My current archive contains: a Java Runtime Environment (OpenJDK 1.7 JRE) a script (.bat) a fat JAR an icon file a few text files I don't want to use the JRE of the system, that's why I provide another JRE. The script just calls the JRE with

How to create a MSI Windows installer for a Java program?

a 夏天 提交于 2020-01-20 05:15:25
问题 I'd like to create a single Microsoft Installer file for a Java program. I can't use Netbeans or any Maven plugin to do it because I can't use Oracle Java and/or JavaFX (mainly for legal reasons) and both seem to use Oracle native deployment + JavaSE 1.8. My current archive contains: a Java Runtime Environment (OpenJDK 1.7 JRE) a script (.bat) a fat JAR an icon file a few text files I don't want to use the JRE of the system, that's why I provide another JRE. The script just calls the JRE with

WiX overwrites config files during setup. How can I avoid this?

。_饼干妹妹 提交于 2020-01-20 00:30:09
问题 I'm using WiX to create a windows installer. Unfortunately my installer overwrites a config file on every update. What I really want is, that the installer only creates the file if it is not found. Thanks and regards, forki 回答1: I sure someone will come up with a proper answer, but as a backup: You could have the installer create a default configuration file, and then have your application copy the default file to the normal configuration file, if the normal configuration file is not present.

Getting Location path Wix installation

你。 提交于 2020-01-17 07:54:11
问题 How to get location path if i want to access mylocation.txt file, this file currently is in E:drive. [CustomAction] public static ActionResult FillList(Session xiSession) { //Can i get store mylocation.txt into application root instead of E location string path = "Mylocation.txt"; // Open the file to read from. string[] readText = File.ReadAllLines(path); foreach (string s in readText) { //Console.WriteLine(s); FillComboBox(xiSession, s, s); } xiSession["COUNTRIES"] = "--Select Location--";

WiX bootstrapper - disable a control using HexStyle

删除回忆录丶 提交于 2020-01-17 03:50:06
问题 I have a WiX bootstrapper theme xml file, and I want to permanently disable a control. I have tried to set HexStyle to the value of WS_DISABLED (link). However the control is still enabled. Anyone knows if I can use HexStyle or know of another way of having a control permanently disabled. I use the WixStandardBootstrapperApplication.RtfLicense BootstrapperApplication. 回答1: The possible solution is to find Id of this control and then create Variable with postfix "State". I hope it should work:

Standard approach to the server environment for the distributable asp.net package

那年仲夏 提交于 2020-01-16 18:08:23
问题 For web application package vendors providing installer for some reason: Would you share the "standard" approach to prepare fixed server environment for an asp.net application package? But some conditions I have: 1)My application requires iis, .net framework and sql server. 2)Windows Server itself, Sql Server licence and media is not provided by my company, end users provide them.(Usually standard edition.) When visiting end user site, Windows Os is already installed, but SQLserver media is

Standard approach to the server environment for the distributable asp.net package

孤街醉人 提交于 2020-01-16 18:06:26
问题 For web application package vendors providing installer for some reason: Would you share the "standard" approach to prepare fixed server environment for an asp.net application package? But some conditions I have: 1)My application requires iis, .net framework and sql server. 2)Windows Server itself, Sql Server licence and media is not provided by my company, end users provide them.(Usually standard edition.) When visiting end user site, Windows Os is already installed, but SQLserver media is