[wix-users] (deprecated) Error loading prerequisite bootstrapper application because managed host could not be loaded

2015-07-27 Thread Brian C Cooke
I am getting Error loading prerequisite bootstrapper application because managed host could not be loaded in the logs of my custom bootstrapper. Originally I was using burn 3.9.2, and receiving error code 0x80004001. On the advice of this thread (http://tinyurl.com/pt9ym65) I tried upgrading to

[WiX-users] Bootstrapper Feature Selection

2015-06-30 Thread Brian C Cooke
How can I provide functionality for feature-level selection in my custom bootstrapper created by burn? This link ( http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-create-a-feature-tree-with-burn-td7579948.html) seems to suggest I can do so by examining the

Re: [WiX-users] repair does not repair file that was changed

2013-10-27 Thread Brian C
If the Modified Date of the file is not the same as the Created Date, then Windows Installer will NOT overwrite the file in a Repair situation, as it thinks the user has modifications to the file that it needs to respect, so this is the correct behavior.  As for the second issue, I am not sure. 

[WiX-users] Using WPF for standard MSI dialogs

2013-10-15 Thread Brian C
All, Is there any way to use WPF/C# to make the GUI for standard msi dialogs?  I know I can do a Bootstrapper to do this, but, I was hoping to avoid that overhead and just deliver an .msi with GUI designed with WPF.   Thanks in advance, Brian

Re: [WiX-users] [WiX-devs] How can I Register a Component in Both 32 and 64 Bit Using a Single MSI

2013-08-10 Thread Brian C
Marco, What you have done sounds okay.   We use a vbscript to call heat for ANYCPU targets.  What it does is extract the 32 bit information into one wxs file, then copies that file for the 64 bit msi, stripping out the common registration information and the file delivery information,

[WiX-users] This seems like a bug, but wanted to post here first

2013-06-05 Thread Brian C
We have a ComPlusApplication which has an Identity and Password.  The values for these are logged in plain test in the msi log file, not encrypted.  Am I missing something on the ComPlusApplication which allows for hiding these values?  For the Username and Password properties that are entered,

[WiX-users] 64 bit registration of COM visible .NET dlls built Any CPU

2013-05-15 Thread Brian C
    Hello all,   Just thought I would post this in case anyone else might have the same problem.  Our installer consists of a 32 bit install, which delivers most files, including some COM visible .Net assemblies.  We also have a 64 bit installer which, for now, delivers some 64 bit

Re: [WiX-users] Bundle Version and patching

2013-04-07 Thread Brian C
I agree.  But, without a built in way of doing this, and with management expecting what previously worked with Wise to work with Wix, it iwa the best I could come up with. From: Rob Mensching r...@robmensching.com To: General discussion for Windows Installer

Re: [WiX-users] Is it possible to pass variables to the msipackage element based on UI from custom BA?

2012-11-18 Thread Brian C
I have not tried the first, so I do not know if it will work that way or not, but, I perfer the second way.  That way the BA always passes the value to the msi, then it is up to the msi to determine what to do with the value or what to do if it is blank.

Re: [WiX-users] Is it possible to pass variables to the msipackage element based on UI from custom BA?

2012-11-16 Thread Brian C
In your CS Code, you call   MyBootstrapperApplication.Engine.StringVariables[my_wixvariable] = VALUE;       From: victorwhiskey victorhwhis...@yahoo.com To: wix-users@lists.sourceforge.net Sent: Friday, November 16, 2012 11:54 AM Subject: Re: [WiX-users] Is

Re: [WiX-users] Managed Bootstrapper - Second Patch does not supersede first Patch

2012-11-06 Thread Brian C
Yes.  RTM is 10.00.35.0002, HF1 is 10.00.35.0003, and HF2 is 10.00.35.0004.  The versions are so close together because we are testing, before our release.  I am rerunning the testing rolling the revision number (i.e. 10.00.35.0002, 10.00.36.0003, 10.00.37.0004).  I will post the results.

Re: [WiX-users] Detecting Feature state in Managed BA

2012-10-09 Thread Brian C
Okay, done.  https://sourceforge.net/p/wix/bugs/3116/ LaunchAction.Modify on Present package does not call PlanMsiFeature From: Bob Arnson b...@joyofsetup.com To: wix-users@lists.sourceforge.net Sent: Tuesday, October 9, 2012 10:00 PM Subject: Re:

[WiX-users] Detecting Feature state in Managed BA

2012-09-28 Thread Brian C
I am trying, in my Managed Bootstrap Application, detect that my bundle is already installed and that a few optional features are installed as well.  I wrote the code below, but I never get into the PlantMsiFeature code.  I have set the EnableFeatureSelection on my MsiPackage. Basically, the

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Brian C
If you have an msi which is always installed, you could check the version of it in the DetectRelatedMsiPackage callback.  You have access to both the major and minor version in the event argument. From: Frauenhoffer, Sabine

[WiX-users] Creating Manage Bootstrap Application targeting .NET 4 instead of 3.5

2012-09-04 Thread Brian C
Hi all, I am wondering if anyone else has had an issue trying to build a Managed Bootstrap Application with the Target as .NET 4.  Compiled with Target as 3.5, everything worked fine, then, for some company-wide WPF GUI enhancements, we went to .NET 4.0.  After adding System.XAML and

[WiX-users] Extracting COM information from 64 bit dlls using heat

2012-07-18 Thread Brian C
Hello all,   As the subject indicates, we are trying to use heat to extract registration information from 64 bit dlls.  I have read most of the posts related to this and know that heat is not built 64 bit, but, we have built the source 64 bit and still cannot get things to work.  It appears to

Re: [WiX-users] Command line arguments to managed BA

2012-06-28 Thread Brian C
that if we are running on 64-bit, just always ignore the ignored string, but that would prevent distinguishing between no command line argument and the '/?' argument.   Brian From: Brian C briancoving...@yahoo.com To: Rob Mensching r...@robmensching.com; General

Re: [WiX-users] Command line arguments to managed BA

2012-06-27 Thread Brian C
) always have the ignored argument when double-clicking the bootstrap executable.  Any ideas?   I am running with 3.6.3025.   Thanks, Brian From: Rob Mensching r...@robmensching.com To: Brian C briancoving...@yahoo.com; General discussion for Windows Installer XML

[WiX-users] Command line arguments to managed BA

2012-06-21 Thread Brian C
Hello,     I have a managed bootstrap application, C# XAML mimicking the WixBA example, but I would like to drive it with command line arguments.  I have tried adding a void Main(string[] args) to the BA class, but that does not get hit.  I tried overloading the Run() the same way,

[WiX-users] Upgrade from 2803 to 2908 new light error

2012-06-03 Thread Brian C
I am getting a new light error while compiling my bootstrapper application:   light.exe(0,0): error LGHT0001: Arithmetic operation resulted in an overflow.   Doesn't jump to any code lines inside of Visual Studio, so I do not think it is anything in the code.   Any ideas?   Thanks in advance,  

Re: [WiX-users] Upgrade from 2803 to 2908 new light error

2012-06-03 Thread Brian C
PM Subject: Re: [WiX-users] Upgrade from 2803 to 2908 new light error On 03-Jun-12 10:52, Brian C wrote: I am getting a new light error while compiling my bootstrapper application:   light.exe(0,0): error LGHT0001: Arithmetic operation resulted in an overflow. Grab the latest build: A recent fix

Re: [WiX-users] Upgrade from 2803 to 2908 new light error

2012-06-03 Thread Brian C
] Upgrade from 2803 to 2908 new light error On 03-Jun-12 14:27, Brian C wrote: Still fails on 2928 build.  We are combining one msi with embedded cab files and one msi with external cab files, all totaling 1.78 GB. Sorry, I forgot that fix missed the RC build. It will be in the next build. -- sig

Re: [WiX-users] harvesting COM information using heat.exe results in HEAT5150

2012-05-26 Thread Brian C
From: Brian C briancoving...@yahoo.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Friday, May 25, 2012 11:46 PM Subject: Re: [WiX-users] harvesting COM information using heat.exe results in HEAT5150 Heat does

Re: [WiX-users] harvesting COM information using heat.exe results in HEAT5150

2012-05-25 Thread Brian C
Heat does not extract for 64-bit dlls.  We have had to write a script to convert the 32 bit extraction into 64 bit. From: Michael Scheepers mscheep...@tool-links.de To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net

[WiX-users] RegistrySearch value created by first msi as input to second msi in chain

2012-05-01 Thread Brian C
All,   I have what appears to be a simple chained install using burn, where I would like to do a RegistrySearch to read a key created by the first msi, and use that to install the second msi to a subfolder of that location.  The first S3DInstallation.msi has its’ own GUI which is run and