dotnetinstaller

Initiate / call bootstrapper in WiX

邮差的信 提交于 2020-01-15 09:38:25
问题 I have created a bootstrpper using the dotNetInstaller tool. The created bootstrapper internally has these installers: .NET Framework 4.0 SQL Server Express Now through WiX, what are the steps that I need to follow to invoke the above Bootstrapper from WiX? 回答1: You should not invoke a bootstrapper from WiX - that has no sense. The idea behind the bootstrapper is to "bootstrap" the prerequisites of the installation (.NET and SQL Express in your case) and the main installation package. The

Error while making setup using dotnetInstaller (installer.exe)

岁酱吖の 提交于 2019-12-12 00:15:11
问题 I have a setup of my project names a Final__.msi . Before installing project setup i want to install Sqlserver R2 Express . So i use dotnetinstaller to created exe . I have put all my pre-requites file under folder names supportedFiles Here my Folder structure : Now i added Exe component for installing sql server. Whether i am doing it wrong by setting executable as #APPPATH\SUppotedFIels\sql.exe Now while creating EXE i got this error This is my Configuration.xml : <?xml version="1.0"

dotnetInstaller should terminate on failure of registry check

爱⌒轻易说出口 提交于 2019-12-11 17:38:43
问题 I have very basic requirement of terminating the installation process on failure of finding registry key, during execution of dotNetInstaller bootStrapper. I am installing WebApplication and want to fail the installation on absence of IIS. But it is not working. Here is my Configuration File. 回答1: An install check doesn't terminate anything, it informs the bootstrapper on whether the component should or should not be installed. Terminating the installation based on some condition isn't

How to deploy 64-bit and a 32-bit Windows Installer package as a single setup?

两盒软妹~` 提交于 2019-11-29 06:48:23
问题 I need to deploy a software setup targeting both, Windows 64bit and 32bit. I have two separate Windows Installer databases (created with WiX) for each platform, and I am using dotNetInstaller to combine both into a single installation bootstrapper executable. I'm currently using version 1.10 of dotNetInstaller and set auto_close_if_installed=True , because I want to comletely hide the bootstrapper from the user. Still, dotNetInstaller insists on displaying a sill progress bar window while my