Re: [WiX-users] Custom Bootstrapper Application - accessing variables set at custom actions

2015-04-28 Thread ronif
Thanks Nir, I didn't know this before, it is indeed helpful. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Bootstrapper-Application-accessing-variables-set-at-custom-actions-tp7600107p7600119.html Sent from the wix-users mailing list archi

Re: [WiX-users] Custom Bootstrapper Application - accessing variables set at custom actions

2015-04-27 Thread Nir Bar
The custom action code sets a MSI property, not a burn variable. You have no WiX-standard way of doing so, however you could you an atom table entry for that. - Nir Bar Freelance Developer Mail: nir.

[WiX-users] Custom Bootstrapper Application - accessing variables set at custom actions

2015-04-27 Thread ronif
Hi, Is it possible to access a variable I set on a Custom Action? There is an example for code that does not work for me: CA: [CustomAction] public static ActionResult CA1(Session session) { session["BLABLA"] = "BlaBla5"; return ActionResult.Failure

Re: [WiX-users] Custom Bootstrapper download and install .NET

2014-12-12 Thread Nick Ramirez
Are you handling the ResolveSource event? See: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NET-4-pre-req-in-WixNetFxExtension-td7579058.html#a7579356 -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Bootstrapper-download-an

[WiX-users] Custom Bootstrapper download and install .NET

2014-12-11 Thread khacminh ho
Hi,I am building my custom UI bootstrapper based on Wix toolset v3.8. However, I encountered an issue with download and install .NET 4.5. Here is my Chain:             If I use default UI, the bootstrapper can download and install .NET 4.5.1 before install my DummyInstaller. But with my custom

Re: [WiX-users] Custom bootstrapper and Server 2008 R2

2013-04-26 Thread ddsoft
Looks like I figured it out. It is not really apparent to a newbie on WiX though so hopefully it saves someone else pain. In the BootstrapperCore.config you have: Remove the v2 runtime line and the Bootstrapper will install v4 before moving on. Hope this helps someone -

Re: [WiX-users] Custom bootstrapper and Server 2008 R2

2013-04-26 Thread ddsoft
That is not clear to me how to do. It appears the BA tries to load my assembly first no? How do I get it to install v4 before loading me? The salient parts of the Bundle.wxs are below http://www.living-planit.com"; Copyright="Copyright© 2013, Living PlanIT SA" IconSourceFile="UI\Setup.

Re: [WiX-users] Custom bootstrapper and Server 2008 R2

2013-04-26 Thread jhennessey
David White wrote > > So the question is, how do I write my own bootstrapper UI when all I have > is v2? I have seen no windows forms apps. Can I write a simple Windows > forms app? Or do I have to go to C++ where I can link the runtime with it? Yes, the managed layer only uses .NET 2.0 so you ca

[WiX-users] Custom bootstrapper and Server 2008 R2

2013-04-26 Thread David White
I am building a bootstrapper and MSI for a server install that will run Windows Server 2008 R2 and up. We are testing a raw install (meaning you just installed base Srv2008R2 with no features yet installed). In this scenario, only v2.0.50727 is installed on the server. When I build the custom UI

Re: [WiX-users] Custom Bootstrapper

2013-01-03 Thread Neil Sleightholm
only stopped services and apps and ran this before the main installation using burn. Neil -Original Message- From: Gustavo Gustavo [mailto:dotnetdev.java...@gmail.com] Sent: 03 January 2013 19:31 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Custom

[WiX-users] Custom Bootstrapper

2013-01-03 Thread Gustavo Gustavo
I have a doubt regarding an approach to avoid an annoying situation that my installer has. ** ** Due to services' dependencies, and other processes, I have a FilesInUse dialog during an Upgrade in Basic Mode (progress bar). I've used to suppress RM on Win 7 and avoid some of these dialo

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-10-01 Thread Frauenhoffer, Sabine
> To: General discussion for Windows Installer XML toolset. < > wix-users@lists.sourceforge.net> > Sent: Thursday, September 27, 2012 8:48 AM > Subject: Re: [WiX-users] Custom Bootstrapper Application: Problem > whentrying todetect if Bundle is already installed > >

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Rob Mensching
hursday, September 27, 2012 8:48 AM > Subject: Re: [WiX-users] Custom Bootstrapper Application: Problem > whentrying todetect if Bundle is already installed > > I tried that one already. It always returned 0 no matter what version my > bundle had. > > -Ursprüngliche Nachricht-

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Brian C
ussion for Windows Installer XML toolset. Sent: Thursday, September 27, 2012 8:48 AM Subject: Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed I tried that one already. It always returned 0 no matter what version my bundle had. -Urs

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Frauenhoffer, Sabine
er, Sabine [mailto:sabine.frauenhof...@haufe-lexware.com] Sent: 27 September 2012 14:13 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Custom Bootstrapper Application: Problem when trying todetect if Bundle is already installed Hi there, I have a problem when trying to detect whether my

Re: [WiX-users] Custom Bootstrapper Application: Problem when trying todetect if Bundle is already installed

2012-09-27 Thread Peter Shirtcliffe
wix-users@lists.sourceforge.net Subject: [WiX-users] Custom Bootstrapper Application: Problem when trying todetect if Bundle is already installed Hi there, I have a problem when trying to detect whether my Bundle is already installed. My usecase is as follows: I am creating a bundle with a custom UI.

[WiX-users] Custom Bootstrapper Application: Problem when trying to detect if Bundle is already installed

2012-09-27 Thread Frauenhoffer, Sabine
Hi there, I have a problem when trying to detect whether my Bundle is already installed. My usecase is as follows: I am creating a bundle with a custom UI. On startup I need to check whether my bundle is already installed in the exactly same version to determine if I have to show the maint

Re: [WiX-users] Custom Bootstrapper (install different drivers, acrobat reader)

2007-11-09 Thread hina1703
Thanks John. It helped. hina1703 wrote: > > I am able to use Visual Studio bootstrapper to install .NET & other > micosoft software. How can I modify it to install other exe files, such as > sentinel.exe, AdobeReader.exe, I need to launch many different executables > during my product install.

Re: [WiX-users] Custom Bootstrapper (install different drivers, acrobat reader)

2007-11-08 Thread John Vottero
> > I am able to use Visual Studio bootstrapper to install .NET & other > micosoft > software. How can I modify it to install other exe files, such as > sentinel.exe, AdobeReader.exe, I need to launch many different > executables > during my product install. This should help: http://www.codeplex

[WiX-users] Custom Bootstrapper (install different drivers, acrobat reader)

2007-11-08 Thread hina1703
I am able to use Visual Studio bootstrapper to install .NET & other micosoft software. How can I modify it to install other exe files, such as sentinel.exe, AdobeReader.exe, I need to launch many different executables during my product install. Please advise. -- View this message in context: