bootstrapper

How to force SqlExpressChk.exe from bootstrapper to check for other instance than SQLEXPRESS

╄→尐↘猪︶ㄣ 提交于 2019-12-12 02:57:59
问题 In SQL Express bootstrapper there is a file called SqlExpressChk.exe used to check the version of the installed SQL Express. Unfortunately I've read that this file is looking for instance name SQLEXPRESS. Does anybody know how to force SqlExpressChk to look for another instance name ? I don't install SQL Server with default instance name. Thanks. 回答1: There isn't a way. SqlExpressChk.exe is limited to only the default instance name, SQLEXPRESS. It won't detect other named instances as

Burn installer facing error .Net 45 0x80091007-The hash value is not correct

梦想与她 提交于 2019-12-12 01:58:54
问题 I am using Burn installer to install msi and .net framework. But when I try to install .exe it fails with error. .Net 45 0x80091007-The hash value is not correct. I have downloaded the .net exe from Link I got the hashcode using tool from fciv tool What I am missing in below scenario. <Chain> <ExePackage Id= "Net45" Name = "dotNetFx45_Full_setup.exe" Cache= "no" Compressed= "no" PerMachine= "yes" Permanent= "yes" Vital= "yes" DownloadUrl="http://www.microsoft.com/en-in/download/confirmation

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 pass the path to a bundle's payload to an msi?

自闭症网瘾萝莉.ら 提交于 2019-12-11 16:24:10
问题 I am using wix/burn to create a bootstrapper to some MSI files. I created markup with an xml payload: <BootstrapperApplicationRef ...> <Payload Id="myXML" Compressed="yes" SourceFile="c:\my.xml" /> </BootstrapperApplicationRef> Question: How do I pass this payload's path to an MsiPackage? <MsiPackage ...> <MsiProperty Name="XMLFILE" Value="[what do I use?]" /> </MsiPackage> I'm also interested in editing the file before passing it to the msi. For that I'm using bafunctions.dll. But I don't

Unable to build WixStdBootstrapperApplication - get error “C:\tools\WixBuild.props” was not found

与世无争的帅哥 提交于 2019-12-11 14:29:29
问题 I am trying to make changes to the WixStandardBootstrapperApplication.cpp and generate a dll as per the suggestion from this link. I have downloaded the wix310-debug source and am modifying the file present under wix310-debug\src\ext\BalExtension\wixstdba\ location. There is a wixstdba.vcxproj file under this location which I am trying to open using Visual Studio 2012. Whenever I try to do that I get the error: Unable to read the project file "wixstdba.vcxproj". The imported project "C:\tools

WiX Bootstrap - The element contains an unhandled extension attribute

元气小坏坏 提交于 2019-12-11 12:43:48
问题 I am having trouble developing a WiX Bootstrap Application using WiX Toolset 4.0. My main objective right now is to check and prevent from reinstalling .NET 4.5 Framework when running the installer. So I need to use the RegistrySearch extension attribute from the xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" namespace but I am getting the following error. The Fragment element contains an unhandled extension attribute 'RegistrySearch'. Please ensure that the extension for

WIX Bootstrapper - Add combo box

浪尽此生 提交于 2019-12-11 07:11:35
问题 How do I add a combo box to a WiX Bootstrapper? I use HyperlinkLargeTheme.xml and have tried to add a combo box to the install page. It appears on the dialog, but I don't know how to add values to it. <Page Name="Install"> <Text Name="InstallLanguge" X="20" Y="200" Width="100" Height="17" FontId="3" DisablePrefix="yes" HideWhenDisabled="yes">Select Language</Text> <Combobox X="130" Y="200" Width="150" Height="17" FontId="3" Name="Language"> <ListItem Text="English" Value="eng" /> <ListItem

Error URL for Prerrequisites Setup.exe Click Once VS 2008

巧了我就是萌 提交于 2019-12-11 05:14:43
问题 I have this trouble: I am using VS 2008 Team Suite, and I have WinForms csproj. I want Publish it using ClickOnce. In Publish Properties of csproj, I have these values: Publishing Folder Location (web site, ftp server, or file path): C:\ClickOnce\Frk.Security.CarWin.WebInstall\Publicacion\ Installation Folder URL (if different than above): http://CHANGETHESERVER/carwinclickonce/Publicacion/ Publish Version: 1.0.0.0 Prerrequisites: Windows Installer 3.1, .NET 35. sp1 Now, I publish and all is

WiX Bootstrapper - difficulty detecting if software is already installed C++ redistributable, SQL Server Compact 3.5 SP2

筅森魡賤 提交于 2019-12-11 03:27:23
问题 So far (thanks to a post from Rob Mensching), my code will detect .NET 4.0 if it's installed, and it'll pass right over it. I'm not able to correctly detect Microsoft Visual C++ 2010 x86 Redistributable OR Microsoft SQL Server Compact 3.5 Service Pack 2. My code is below. I'm learning, so I would appreciate as much constructive criticism as possible. <!-- Search for .NET 4.0 --> <util:RegistrySearch Id="NETFRAMEWORK40" Root="HKLM" Key="SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full" Value

Wix variable name formats with spaces and other characters

一曲冷凌霜 提交于 2019-12-11 02:35:54
问题 I have a project I am trying to include in my WIX Bootstrapper. The projects name is "Project-1 With Spaces" In my WIX Bootstrapper i am trying to access this project like so $(var.Project-1_With_Spaces.TargetDir) This throws an error Undefined preprocessor variable '$(var.Project-1_With_Spaces.TargetDir)' I believe it is the '-' character that is to blame, yet do not know how to format my variable correctly to be able to access this project. I have tried replacing '-' with underscores or