Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread Richard.Foster
ard - PAL; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] prerequisites .net , sqlce etc Actually SMS can push support files like bootstappers out with the msi to the distribution points and invoke them as part of their package definition. In fact, SMS doesn't really even require MSI's

Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread Christopher Painter
Actually SMS can push support files like bootstappers out with the msi to the distribution points and invoke them as part of their package definition. In fact, SMS doesn't really even require MSI's although MSIs generally behave nicer. The scenario you describe is a limitation of GPO sinc

Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread Matthew Sheets
I would suggest considering http://www.devage.com/Wiki/ViewArticle.aspx?name=dotnetinstaller&version=0 dotNetInstaller . In addition to supporting prerequisite installations of the .NET Framework, it also supports installing other prerequisites such as SQL Express. There is also a GUI to help w

Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread Richard.Foster
ou won't be far wrong. VS 2005 .XXproj files are (if I understand correctly) actually MSBuild scripts. Hope this helps, Regards, Richard From: Glen Harvy [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 10:40 AM To: WiX Users Group Subject:

Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread Glen Harvy
Hi Richard, I appreciate your comments. So far I have always used the Setup & Deployment project in VS20005 to create my msi and setup files. I have always configured VS2005 to check and download the prerequisites and they work fine. I need now to become a bit more "professional" and find t

Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread Richard.Foster
Glen, Some of the prerequisites you mention (specifically the .NET runtime) are packaged using Microsoft Installer technology themselves. As a result, you cannot automatically install them from within your MSI - all you can do is make your MSI verify that they have been installed. The archi

Re: [WiX-users] prerequisites .net , sqlce etc

2007-09-13 Thread conkerjoe
You can do this by using the GenerateBootStrapper task in MSBuild, it already has a few prerequisites built for you including .Net 2 and SQL CE Documentation is here http://msdn2.microsoft.com/en-us/library/ms164294.aspx Glen Harvy wrote: > > Hi, > > Where can I find some information of havi