[WiX-users] Including files to installer with bindpath - best practice?

2015-03-04 Thread Jani C Oinonen
I'm in the process of enabling UAC patching for our software. The process today looks like this (some steps are left out): I use melt on the two different msi packages + wixpdb files to create new wixpdb files + extraction of all the files (administrative install). i use torch, that compares the

Re: [WiX-users] Setting install directory to a user chosen value.

2015-03-04 Thread Joseph L. Casale
> You have several options to do that: > 1. Author a SetProperty > > element that will append the string entered by the user > 2. Author a Publish > >

Re: [WiX-users] Including files to installer with bindpath - best practice?

2015-03-04 Thread Tunney, Stephen
What command line arguments do you have for your light command that generates your wixmsp? -Original Message- From: Jani C Oinonen [mailto:jani.c.oino...@consultant.husqvarnagroup.com] Sent: March-04-15 5:03 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Including files to i

Re: [WiX-users] [SPAM] Error LGHT0094: Unresolved reference to symbol 'WixBootstrapperApplication:ManagedBootstrapperApplicationHost' in section 'Bundle:MyApp Bootstrapper'

2015-03-04 Thread psimms
Hi Neil, I seem to be getting the same error - Unresolved reference to symbol 'WixBootstrapperApplication:WixExtendedBootstrapperApplication.RtfLicense' in section 'Bundle:Burn' However I only have reference to "WixBalExtension" not "WixBalExtensionExt" - am I suppose to reference "WixBalExtens

Re: [WiX-users] Including files to installer with bindpath -bestpractice?

2015-03-04 Thread Jani C Oinonen
The project looks like this (v3.7.1224.0): In my wixproj i have different BindInputPaths like these: Protocol false Is there a better way to declare these paths? i don't like having hardcoded paths in the wixproj file. Then the files in the wxs are then included like this:

Re: [WiX-users] Setting install directory to a user chosen value.

2015-03-04 Thread Nir Bar
The dialog that asks for MYID should be sequenced before the dialog that asks for INSTALLFOLDER. On the MYID dialog's "Next" button you should add the Publish element that sets INSTALLFOLDER to [CompanyName]\[MYID]. Does that make sense? P.S On the markup you sent you have SetDirectory element wi

Re: [WiX-users] Including files to installer with bindpath -bestpractice?

2015-03-04 Thread Phill Hogland
Another approach is to use named bindpaths like this: (which in VS IDE can be edited in the project's properties page (or by unloading the project) $(LinkerAdditionalOptions) -nologo -b foo="$(MySourceRoot)\source_path\foo\\" For $(MySourceRoot) I define that in anothe

[WiX-users] WiX 3.9 R2 NuGet package

2015-03-04 Thread Tunney, Stephen
Hey everyone, Trying to use the NuGet package for our next product release that is upgrading us from 3.7 to 3.9 R2. I have the nuget package installing for the solution but this seems to have a chicken/egg problem. I don't have WiX installed on the machine. Therefore the wixproj projects are

Re: [WiX-users] Including files to installer with bindpath -bestpractice?

2015-03-04 Thread Tunney, Stephen
I would first attempt declaring your bindpath values in your light command line just to be sure with a -b Protocol=..\Protocol\bin\Release -Original Message- From: Jani C Oinonen [mailto:jani.c.oino...@consultant.husqvarnagroup.com] Sent: March-04-15 10:15 AM To: General discussion ab

Re: [WiX-users] WiX 3.9 R2 NuGet package

2015-03-04 Thread Sean Hall
There is no official Nuget package for WiX. That won't happen until 4.0 stabilizes. There are no plans for releasing 3.x by Nuget package. The nuget package in 4.x will not include the VS integration, you will still need to install WiX for that. On Wed, Mar 4, 2015 at 10:33 AM, Tunney, Stephen

Re: [WiX-users] WebDirProperties - set anonymous user to Application Pool Identity

2015-03-04 Thread Michael Pierce
I am trying to accomplsh the same thing. Did you figure this out? If so, how did you do it? Thank you, Mike -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WebDirProperties-set-anonymous-user-to-Application-Pool-Identity-tp7023516p7599465.html

Re: [WiX-users] WiX 3.9 R2 NuGet package

2015-03-04 Thread Tunney, Stephen
All of these statements make me a sad panda :( -Original Message- From: Sean Hall [mailto:r.sean.h...@gmail.com] Sent: March-04-15 11:48 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] WiX 3.9 R2 NuGet package There is no official Nuget package for WiX. That wo

Re: [WiX-users] Setting install directory to a user chosen value.

2015-03-04 Thread Joseph L. Casale
> The dialog that asks for MYID should be sequenced before the dialog that asks > for INSTALLFOLDER. > On the MYID dialog's "Next" button you should add the Publish element that > sets INSTALLFOLDER to [CompanyName]\[MYID]. > > Does that make sense? Yup, that was the missing bit. Much appreciated.

Re: [WiX-users] Installation doesn't progress at all

2015-03-04 Thread Balaji R
Hi, I've installing a .msi file using managed bootstrapper application. Thanks, Balaji -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Installation-doesn-t-progress-at-all-tp7599147p7599470.html Sent from the wix-users mailing list archive at Nab

Re: [WiX-users] Including files to installer with bindpath-bestpractice?

2015-03-04 Thread Jani C Oinonen
Thank you for that tip! I will definately use that. Now i only need to understand why melt doesn't take care of the paths in the wixpdb files, eventhough i'm using bindpaths. From: Phill Hogland To: wix-users@lists.sourceforge.net Date: 2015-03-04 17:20 Subject:Re: [WiX-users]