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

2014-02-13 Thread Tunney, Stephen
4 9:56 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 >

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

2014-02-13 Thread Kiran Somisetty
o: 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 >

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

2014-02-11 Thread Steven Ogilvie
I have: So once again I can change it like: SERVICESLOGLEVEL=DEBUG Steve -Original 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

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

2014-02-11 Thread Kiran Somisetty
6 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 aga

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 yes using it like below but when I compile the project I am

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 wrote: > You can use something like this: > > > And then when you run your installer: > > msiexec /i YourMsi.msi /l*vx output.log PASSE

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: 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 PASSED_IN_VALUE gets. I didn't run this, but it should be pretty close to wha

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

2014-02-11 Thread Tunney, Stephen
.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 have declared the property like below yes using it like below but when I compile the project I am get

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 Kiran Somisetty
I have declared the property like below yes using it like below but when I compile the project I am getting below error Error 3 The iis:WebDirProperties/@AnonymousAccess attribute's value, '[VALUEPASSED]', is not a legal yes/no value. The only legal values are 'no' and 'yes'. C:\Infodev\TRFA

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 Ilir Bekteshi
You should use Property for example: Then run msiexec /i abc.msi VALUEPASSED=yourvalue On 2/11/14, Walter Dexter wrote: > 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,

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: 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? Try to look better

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" wrote: > I have a requirement to pass values from the command line while > installing the wix. >

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 : > I have a requirement to pass values from the command line while > installing the wix. > > I want to assign this to Anynymo

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

2014-02-11 Thread Kiran Somisetty
I have a requirement to pass values from the command line while installing the wix. I want to assign this to AnynymousAccess attribute. Can you pls help me on this, I searched the documentation, but haven't got any clues. Kiran