Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
Thanks for your responce. My bootstrappercore.config looks like: ?xml version=1.0 encoding=utf-8 ? configuration configSections sectionGroup name=wix.bootstrapper type=Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperSectionGroup, BootstrapperCore section name=host

Re: [WiX-users] CustomAction TableCollection

2015-03-30 Thread Kraygsoft
Did you ever work this out I have the same problem and a morning of googling has got me know where. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/CustomAction-TableCollection-tp6180281p7599767.html Sent from the wix-users mailing list archive at

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
Just changed my custom bootstrapper to .Net 4.0, but it still is running only under .Net 4.5. My bootstrappercore.config looks like: ?xml version=1.0 encoding=utf-8 ? configuration configSections sectionGroup name=wix.bootstrapper

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread John Cooper
You may need to set useLegacyV2RuntimeActiviationPolicy to false. From the comments to the default config for C# custom actions: In order to enable .NET Framework version 2.0 runtime activation policy, which is to load all assemblies by using the latest supported runtime,

[WiX-users] Reading the Directory table

2015-03-30 Thread Craig Reeves
Ok I have a custom action that reads a custom table and uses the following syntax var ProtectedConfigFolders = session.Database.OpenView(session.Database.Tables[ProtectedConfigFolders].SqlSelectString); Now this works However if I try and ready the Directory table in the same way var

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
I tried your suggestion, but unfortunately it didn't work. It still crashes. Thanks anyway. Somebody else? Van: John Cooper jocoo...@jackhenry.com Verzonden: maandag 30 maart 2015 15:55 Aan: General discussion about the WiX toolset. Onderwerp: Re:

Re: [WiX-users] General Visual Studio 2013 Help

2015-03-30 Thread Joel Budreau
Yeah, thanks John. It’s working now :) On Mar 29, 2015, at 10:33 AM, John Cooper jocoo...@jackhenry.com wrote: You need to make sure that the path to the library is in the list of paths searched for libraries, and you need to make sure the library filename is the list of libraries to be

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Rob Mensching
NETFX v4.5 is an in place upgrade of v4.0. If you have v4.5 you no longer have v4.0 on your machine. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Lutteke, Robin

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
So, because I've got .Net 4.5 installed on my system I cannot create a custom bootstrapper setup for .Net 4.0? Met vriendelijke groet, Robin Lutteke Software Engineer Ringwade 1 3439 LM Nieuwegein T +31(0)30 663 8000 (optie 1) F +31 (0)30 663 8010 www.ordina.nl -Original Message-

Re: [WiX-users] Another version installed.

2015-03-30 Thread Pavan Konduru
Never mind my post. Just heard that someone messed around with the registry keys. -Original Message- From: Pavan Konduru [mailto:pavan.kond...@accelrys.com] Sent: Monday, March 30, 2015 12:32 PM To: General discussion about the WiX toolset. (wix-users@lists.sourceforge.net) Subject:

[WiX-users] WiX Burn how to suspend and restart setup

2015-03-30 Thread Marco Tognacci
I have a Burn setup with custom WPF UI deployed using 2 DVD.I need to implemente search location for a component or payload, I have made the code inside the event ResolveSource, setting the new LocalSource and setting the result in the EventArgs to Retry,but in this way I only can do all the

Re: [WiX-users] CustomAction TableCollection

2015-03-30 Thread DvdBrink
I didn't find a fix for it at the time sadly enough and to be honest I don't really know anymore what I was trying to achieve. I just tried something with Wix 3.10 and I couldn't get it to crash with that code in My custom action.. Running the CA know with that code yields the following

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Lutteke, Robin
I didn't understand you correctly than, sorry. My custom bootstrapper is already targeting v4.0. What else can I change? Thanks for your help! Met vriendelijke groet, Robin Lutteke Software Engineer Ringwade 1 3439 LM Nieuwegein T +31(0)30 663 8000 (optie 1) F +31 (0)30 663 8010

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread John Cooper
It will run the 4.x that is installed. 4.6 will be a superset of 4.5.2 which is a superset of 4.5.1 which is a superset of 4.5 which is a superset of 4.0. When you have one of these installed, all the earlier versions are superseded and replaced. -- John Merryweather Cooper Senior Software

Re: [WiX-users] CustomAction TableCollection

2015-03-30 Thread DvdBrink
Previous message formatting was totally off so a retry and hopefully this one is better ;) I didn't find a fix for it at the time sadly enough and to be honest I don't really know anymore what I was trying to achieve. I just tried something with Wix 3.10 and I couldn't get it to crash with

[WiX-users] Another version installed.

2015-03-30 Thread Pavan Konduru
Hi All, I saw a weird error on a Win 2012 server today that was reported by QA. Trying to run the installer , shows the message that Another version is already installed, use add/remove. When I check add/remove, there is no entry for the product. My installer is per-machine , so a different

Re: [WiX-users] BAFunctions.dll to set WixBundleName from the language of the user's computer

2015-03-30 Thread Rob Mensching
Often the Programs Features contains the name of the product which is typically a trademark (or treated like a brand in any case) and thus not localized. It's possible to change the name but wixstdba doesn't really expose it easily.

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Rob Mensching
I did not say that at all. If you want code to run against v4.0 you need to target v4.0. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Lutteke, Robin

Re: [WiX-users] BAFunctions.dll to set WixBundleName from the language of the user's computer

2015-03-30 Thread David Burson
ok thanks Rob. That explains why I haven’t found an easy way to do this. I’m trying to replace our old InstallAware installer with WiX. Generally I’m much happier with what I have localized with WiX than with InstallAware. However, with InstallAware we did localize the Program Features name

[WiX-users] (no subject)

2015-03-30 Thread 秋田伸一
-- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought

Re: [WiX-users] Wix bootstrapper only works on .net 4.5

2015-03-30 Thread Sean Hall
Make sure that the config file is named as BootstrapperCore.config by setting the Payload/@Name attribute. For the .NET 2 problem, the order matters for the supportedRuntime elements in the startup element in BootstrapperCore.config. The .NET 2 line probably should have been first. For the .NET

Re: [WiX-users] BAFunctions.dll to set WixBundleName from the language of the user's computer

2015-03-30 Thread Sean Hall
The sample is supposed to build with VS2010. IBootstrapperBAFunction.h should be in the SDK directory with the other WiX header files like dutil.h. Worst case scenario you can copy it from source at https://github.com/wixtoolset/wix3/blob/develop/src/libs/balutil/inc/IBootstrapperBAFunction.h .

Re: [WiX-users] WiX Burn how to suspend and restart setup

2015-03-30 Thread Sean Hall
The engine won't do anything while calling OnResolveSource. Don't return from ResolveSource until you have located the package. If you don't want the UI thread to be the same thread that handles BA calls, then create a new thread for running your UI. That will probably require nontrivial

Re: [WiX-users] Reading the Directory table

2015-03-30 Thread Nir Bar
Can you post the actual SQL string that is the result of session.Database.Tables[ProtectedConfigFolders].SqlSelectString ? - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Platforms - WiX InstallShield -- View