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

2014-02-14 Thread Bevan Weiss
The virtual directory doesn't care about what version ASP.NET you are running, since it's not actually responsible for running any processes. It's only the Application Pool that runs processes and thus cares about whether you are .NET v2 or .NET v4 etc.. or even if you are 64-bit vs 32-bit. When y

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

2014-02-14 Thread Suvrajyoti Panda
vrajyoti Panda [mailto:suvrajyo...@contata.co.in] > Sent: February-14-14 6:50 AM > To: General discussion about the WiX toolset. > Subject: Re: [WiX-users] How to select ASP.NET version > > Hi Kiran, > > I have used as below. Please see the app pool creation here. > > &

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

2014-02-14 Thread Steven Ogilvie
. Subject: Re: [WiX-users] How to select ASP.NET version the installation is failing and show the below error INSTALL completed, msiexec.exe return code: 1603 I have copied my code usage below, pls take a glance

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

2014-02-14 Thread Chaitanya
I suspect in IIS the Virtual dir or Application is already exist,again your trying to install the same virtual dir with ur MSI..delete the the virtual dir and try again..it may work On 14-02-2014 19:24, Kiran Somisetty wrote: > the installation is failing and show the below error > > INSTALL c

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

2014-02-14 Thread Kiran Somisetty
the installation is failing and show the below error INSTALL completed, msiexec.exe return code: 1603 I have copied my code usage below, pls take a glance. On Fri, Feb 14, 2014 at 7:07 P

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

2014-02-14 Thread Steven Ogilvie
Hi Suvrajyoti, Curious, I don't use a mailto:suvrajyo...@contata.co.in] Sent: February-14-14 6:50 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] How to select ASP.NET version Hi Kiran, I have used as below. Please see the app pool creation

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

2014-02-14 Thread Suvrajyoti Panda
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 tried to implement like this, but I am getting a :1603 error during > installation, any cl

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

2014-02-14 Thread Kiran Somisetty
Thanks for the response. I tried to implement like this, but I am getting a :1603 error during installation, any clues on this. On Fri, Feb 14, 2014 at 5:20 PM, Suvrajyoti Panda wrote: > Hi Kiran, > > I have used as below. Please see the app pool creation here. > > > >

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

2014-02-14 Thread Suvrajyoti Panda
Hi Kiran, I have used as below. Please see the app pool creation here. Regards, Suvra Jyoti On 14-02-2

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

2014-02-14 Thread Chaitanya
you can seletc buy setting tag tag "ManagedRunTimeVersion". On 14-02-2014 16:17, Kiran Somisetty wrote: > 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.NE

[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. -