Re: [WiX-users] Managed Bootrapper next step

2012-06-08 Thread Rob Mensching
The WiX code there should probably be fixed. ResumeType.Arp is a reasonable way to go. You can also tell if a Bundle is installed via the WixBundleInstalled variable. On Fri, Jun 8, 2012 at 6:04 AM, Neil Sleightholm wrote: > Thanks that is useful and confirms what I thought - seems a bit odd tha

Re: [WiX-users] Managed Bootrapper next step

2012-06-08 Thread Neil Sleightholm
Thanks that is useful and confirms what I thought - seems a bit odd that the bootstrapper needs to know what it is installing. I'll give the ResumeType.Arp a try. Neil Neil Sleightholm n...@x2systems.com On 8 Jun 2012, at 13:38, jhennessey wrote: Neil Sleightholm

Re: [WiX-users] Managed Bootrapper next step

2012-06-08 Thread jhennessey
Neil Sleightholm wrote > > I have looked at InstallationViewModel.cs some more and I think I am > starting to understand it. > > One question how do you detect that the bundle is already installed and > hence display uninstall/repair? > In the WiX BA it looks like they handle this in Detected

Re: [WiX-users] Managed Bootrapper next step

2012-06-08 Thread Neil Sleightholm
I have looked at InstallationViewModel.cs some more and I think I am starting to understand it. One question how do you detect that the bundle is already installed and hence display uninstall/repair? Neil Neil Sleightholm n...@x2systems.com On 7 Jun 2012, at 14:53,

Re: [WiX-users] Managed Bootrapper next step

2012-06-07 Thread Neil Sleightholm
I have been studying InstallationViewModel.cs but just can't get my head around all the states and can't find it documented anywhere. Hopefully the WiX documentation will be improved in the near future. Neil Neil Sleightholm n...@x2systems.com On 7 Jun 2012, at 14:0

Re: [WiX-users] Managed Bootrapper next step

2012-06-07 Thread jhennessey
Neil Sleightholm wrote > > I have created a very basic managed bootstrapper and it is loaded > correctly by my bundle but it doesn't actually run the install it just > stays in memory but with nothing happening. I have looked at the WiX > install and just can't figure out what I need to do next,