Re: [WiX-users] Missing project name preprocessor variable for WiX v3.9 R2 setup project in VS 2012

2015-06-28 Thread Kiran Somisetty
Can you pls drop me from your mailing list. Thanks Kiran On Fri, Jun 26, 2015 at 9:52 PM, Newell,Tim wrote: > I having an issue with a WiX setup project I recently added to a Visual > Studio 2012 (Ultimate, Update 4) web service project. > > When the Candle utility processes the Product.wxs fil

Re: [WiX-users] How to select ASP.NET version

2014-02-14 Thread Kiran Somisetty
PM, Suvrajyoti Panda wrote: > Just use the below for your app pool. > > ManagedRuntimeVersion="v4.0" > > Could you please be more elaborate on the error you are facing. > > On 14-02-2014 18:47, Kiran Somisetty wrote: > > Thanks for the response. > > I tri

Re: [WiX-users] How to select ASP.NET version

2014-02-14 Thread Kiran Somisetty
Alias="[VIRTUAL_DIR_VAL]" Directory="MYWEBWEBSITE" > WebSite="DefaultWebSite"> > AnonymousAccess="yes" BasicAuthentication="yes" > WindowsAuthentication="yes" /> > Name

[WiX-users] How to select ASP.NET version

2014-02-14 Thread Kiran Somisetty
Is there a way to provide the ASP.NET version while creating Web virtual directory in wix installer. I have created a installer that creates a web virtual directory, but I see the ASP.NET version is pointed to 2.0. I want to set it to 4.0, rather than manually changing it. -

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

2014-02-13 Thread Kiran Somisetty
NOT MYPROPERTY="HELLO" > > > The conditions 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: Ge

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

2014-02-11 Thread Kiran Somisetty
t; > NOT MYPROPERTY="HELLO" > > > The conditions 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

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

2014-02-11 Thread Kiran Somisetty
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 > what you need. > > Levi > > > On T

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

2014-02-11 Thread Kiran Somisetty
r 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, 2014 7:42 AM, "Kiran Somisetty" > wrote: > > > >>

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

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

[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