Re: [WiX-users] Component/@Guid error

2012-10-05 Thread bpackard
Not sure what the problem actually was. I scrapped what I had, and started over. Everything working now as expected. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Component-Guid-error-tp7579390p7581179.html Sent from the wix-users mailing list

Re: [WiX-users] Problems executing two custom actions with same button click

2012-09-26 Thread bpackard
Add a condition of '1' to each Publish directive, and see if that helps. The WiX help links to the MSDN pages for Windows Installer for a reason. From the ControlEvent Table you will find the following statement: Condition A conditional statement that determines whether the installer activates

Re: [WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-13 Thread bpackard
try Property ... SupressModularization=yes/ -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/define-element-for-ProgramFilesFolder-not-working-in-include-file-tp7580463p7580487.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Assistance with creating a patch

2012-08-02 Thread bpackard
I cannot suggest a solution for the patch problem you currently have, but I might be able to suggest an alternative. I was unable to use the pure WiX patching technique, as I was attempting to patch a file in a merge module. The WiX help describes two methods of patch generation, the first WiX

Re: [WiX-users] Component/@Guid error

2012-07-12 Thread bpackard
Rob, Unless I am mistaken, that criteria: [no] Property substitutions ... is only relevant if I am asking WiX to generate the Guid; which seems to be indicated in the initial message. The Component/@Guid attribute's value '*' is not valid for this component... What has me confused is that the

[WiX-users] AppId, Class and ProgId elements

2011-10-21 Thread bpackard
I am attempting to create AppId, Class and ProgId entries instead of using raw registry key/value elements, which generate warnings. In the documentation for Class it has the following entry: SafeForInitializing In General Value yes specified: [HKCR\CLSID\{Id}\Implemented

Re: [WiX-users] Build speed, suggestions?

2010-10-12 Thread bpackard
Chris, John, Thanks for the suggestions. I tried a vm with Server 2008 as a base OS (instead of 2003) and it seems to help considerably. I did a couple of trials and the set of merge modules took only 10+ minutes. The 2003 based vm takes ~ 90 minutes. The real hardware (with 2003) takes about

Re: [WiX-users] Passing Values from the ProductModule to a MergeModule

2010-07-21 Thread bpackard
I think you can simplify what you have: Property Id=SERVICEUSER SuppressModularization=yes/ Property Id=SERVICEPASSWORD SuppressModularization=yes/ Directory Id=TARGETDIR Name=SourceDir Directory Id=MergeRedirectFolder Component Id=ServiceInstaller Guid=* DiskId=1

[WiX-users] Am I doing something wrong, or is this a bug?

2010-06-08 Thread bpackard
I am attempting to build a project which contains a couple of rtf files outside the msi. I have built a small Project.wxs that displays the issue. In the project I have two components, each with a single file. One is embedded, the other may not be. When the Package is set to Compressed=yes the

Re: [WiX-users] Condition Table generation

2010-05-24 Thread bpackard
Mike, Basically I need to adjust the feature tree for each MSI. Each of the 10 MSIs is a distinct product package with a unique upgrade code. Payload is attached to features via mergemodules. If the feature tree contains features A and B, with sub-features A0 - An, B0 - Bn, the first MSI could

Re: [WiX-users] Condition Table generation

2010-05-24 Thread bpackard
Ultimately I am controlling what the user sees, the stripping out of the merge modules is simply reducing the size of the package. Using the condition table I have a consistent feature table for all packages, and encapsulate exclusions within each package. Probably FeatureGroups will work, but