Re: [WiX-users] how to pass values from command line to wix installer

2014-02-13 Thread Kiran Somisetty
To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer This looks like an issue (perhaps not a bug) with WIX schema validation during compliation of the wxs file. It is checking your .wxs file against an xsd schema that limits

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-13 Thread Tunney, Stephen
AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer This looks like an issue (perhaps not a bug) with WIX schema validation during compliation of the wxs file. It is checking your .wxs file against an xsd schema

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Giona Imperatori
Are you sure? Try to look better the next time: http://wixtoolset.org/documentation/manual/v3/overview/preprocessor.html 2014-02-11 14:30 GMT+01:00 Kiran Somisetty mr.svski...@gmail.com: I have a requirement to pass values from the command line while installing the wix. I want to

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Walter Dexter
If you mean when you install the resulting MSI, that would be in the Windows installer documentation. Or you can do msiexec /? and I think that's in there. On Feb 11, 2014 7:42 AM, Kiran Somisetty mr.svski...@gmail.com wrote: I have a requirement to pass values from the command line while

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Kiran Somisetty
I got this link. I am creating the msi using the msbuild. variable delcared: ?define access=yes? msi name: trfaudit.msi command line : msiexec /i trfaudit.msi -dacces=no This didn't work. On Tue, Feb 11, 2014 at 7:21 PM, Giona Imperatori giona.imperat...@gmail.com wrote: Are you sure?

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Ilir Bekteshi
You should use Property for example: iis:WebDirProperties Id=webdir AnonymousAccess='[VALUEPASSED]'/ Then run msiexec /i abc.msi VALUEPASSED=yourvalue On 2/11/14, Walter Dexter wfdex...@gmail.com wrote: If you mean when you install the resulting MSI, that would be in the Windows installer

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread David Watson
://robmensching.com/blog/posts/2010/5/2/the-wix-toolsets-remember-property-pattern -Original Message- From: Ilir Bekteshi [mailto:ilir...@gmail.com] Sent: 11 February 2014 14:27 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Kiran Somisetty
I have declared the property like below Property Id=VALUEPASSEDyes/Property using it like below iis:WebDirProperties Id=webdir AnonymousAccess='[VALUEPASSED]'/ but when I compile the project I am getting below error Error 3 The iis:WebDirProperties/@AnonymousAccess attribute's value,

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Tunney, Stephen
And please excuse the poor formatting of my message :) -Original Message- From: Tunney, Stephen [mailto:stephen.tun...@nuance.com] Sent: February-11-14 9:56 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Tunney, Stephen
are MUTUALLY EXCLUSIVE in this case and should fit your criteria -Original Message- From: Kiran Somisetty [mailto:mr.svski...@gmail.com] Sent: February-11-14 9:42 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer I

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Levi Wilson
You can use something like this: iis:WebDirProperties Id=webdir AnonymousAccess='[PASSED_IN_VALUE]'/ And then when you run your installer: msiexec /i YourMsi.msi /l*vx output.log PASSED_IN_VALUE='value passed' the /l*vx will log the install to a file. From there you can see what value

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Kiran Somisetty
Where should we declare PASSED_IN_VALUE in the wxs file? Can you pls throw me a sample wix file to handle this. On Tue, Feb 11, 2014 at 7:54 PM, Levi Wilson l...@leviwilson.com wrote: You can use something like this: iis:WebDirProperties Id=webdir AnonymousAccess='[PASSED_IN_VALUE]'/ And

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread David Watson
Somisetty [mailto:mr.svski...@gmail.com] Sent: 11 February 2014 14:42 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer I have declared the property like below Property Id=VALUEPASSEDyes/Property using it like below

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Kiran Somisetty
AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer This looks like an issue (perhaps not a bug) with WIX schema validation during compliation of the wxs file. It is checking your .wxs file against an xsd schema

Re: [WiX-users] how to pass values from command line to wix installer

2014-02-11 Thread Steven Ogilvie
Message- From: Kiran Somisetty [mailto:mr.svski...@gmail.com] Sent: February-11-14 9:57 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] how to pass values from command line to wix installer Where should we declare PASSED_IN_VALUE in the wxs file? Can you pls throw me