Re: [WiX-users] .Net installation using Wix

2013-05-09 Thread Nick Miller
Hi Ashish, I don't know if you can install the .Net prequisite in an MSI, however I can tell you that all of your needs are what burn is for. You will also run into problems if your MSI is run on a Windows 7 machine with UAC enabled, whereas if you use burn, it will elevate your MSI for you if

Re: [WiX-users] .Net installation using Wix

2013-05-09 Thread Hoover, Jacob
hursday, May 09, 2013 11:38 AM To: ashish thomas; General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] .Net installation using Wix Take a look here http://neilsleightholm.blogspot.co.uk/2012/05/wix-burn-tipstricks.html this should get you started using burn and there is al

Re: [WiX-users] .Net installation using Wix

2013-05-09 Thread Neil Sleightholm
Take a look here http://neilsleightholm.blogspot.co.uk/2012/05/wix-burn-tipstricks.html this should get you started using burn and there is also the code you need to detect and install .NET 3.5. -Original Message- From: ashish thomas [mailto:ashishptho...@yahoo.co.in] Sent: 09 May 2013

Re: [WiX-users] .NET Installation

2006-07-10 Thread Francis Kam
This is probably the sort of thing best handled by a bootstrapper.  Do a search on the archives for info about it.   -Francis   On 7/8/06, X Y <[EMAIL PROTECTED]> wrote: Hi All,I am new to wix and was wondering if there was anexample out there that does the following: 1. Detect .NET (found in tutor

Re: [WiX-users] .NET Installation - request for example

2006-07-10 Thread Tony.Bjerstedt
flett Sent: Monday, July 10, 2006 3:42 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] .NET Installation - request for example Try looking at http://www.codeproject.com/dotnet/dotNetInstaller.asp Rob X Y wrote: > Hi All, > I am new to Wix and was wondering if there was an exam

Re: [WiX-users] .NET Installation - request for example

2006-07-10 Thread Rob Hamflett
Try looking at http://www.codeproject.com/dotnet/dotNetInstaller.asp Rob X Y wrote: > Hi All, > I am new to Wix and was wondering if there was an > example floating out there that does the following: > > 1. Detect whether .NET is installed in the machine (an > example has already been done via t

Re: [WiX-users] .NET Installation - request for example

2006-07-09 Thread Bob Arnson
X Y wrote: > 2. If it hasnt been, obtain dotnetfx from a website or > somewhere and launch it. > That needs to be handled via a bootstrapper/chainer (such as the one in WiX v3's ClickThrough project), because .NET is installed via an MSI and you can't have two MSIs running at the same time. -