Re: [WiX-users] RE. Multilanguage bundle

2013-08-21 Thread Branko Horvat
Hi, I installed WiX3.8 and it did autodetect German language. BR, Branko -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/RE-Multilanguage-bundle-tp7588097p7588286.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] RE. Multilanguage bundle

2013-08-20 Thread Branko Horvat
Phil, thx for your guidance so far. In WiX3.7 I manage to build setup.exe and run it with or without -lang 1031. So I can see English and German draft version. Now I wanted to get to auto detection on running setup.exe. So I downloaded the WixBalExtensionExt.dll. I used that in candle.exe

[WiX-users] RE. Multilanguage bundle

2013-08-19 Thread Branko Horvat
Hi, It must have been something with copypaste. Now it works. Thx. So, in WiX3.7 it is not possible yet to use detected language automatically? BR, Branko -- Get 100% visibility into Java/.NET code with AppDynamics Lite!

Re: [WiX-users] Multilanguage bundle

2013-08-16 Thread Branko Horvat
Hi, I currently use WiX 3.6. BR, Branko -- Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free troubleshooting tool designed for production. Get down to code-level detail for bottlenecks, with 2%

[WiX-users] Multilanguage bundle

2013-08-16 Thread Branko Horvat
Hi, I am testing multilanguage bundle (burn) support but I couldn't make it work: ... WixVariable Id=WixStdbaThemeWxl Value=Resources\RtfTheme.wxl/ BootstrapperApplicationRef Id='WixStandardBootstrapperApplication.RtfLicense' bal:WixStandardBootstrapperApplication

Re: [WiX-users] Multilanguage bundle

2013-08-16 Thread Branko Horvat
It must be it doesn't work in WiX 3.6. Ok, I have upgraded WiX to 3.7 and now the default .exe works as expected (now language specifics). But If I call the setup .exe file with language param (-lang 1031) it doesn't run but there is also no response whatsoever. BR, B.

Re: [WiX-users] Multilanguage bundle

2013-08-16 Thread Branko Horvat
No, it doesn't work if I keep this line even in WiX 3.7: WixVariable Id=WixStdbaThemeWxl Value=Resources\RtfTheme.wxl/ No errors but also no setup UI after calling setup.exe (with or without -lang 1031). I also tried with LicenseUrl='' and adding two additional Payload elements for logo and

[WiX-users] RE. Multilanguage bundle

2013-08-16 Thread Branko Horvat
This is what Bundle's log sais: Error 0x8007006e: Failed to load loc file from path: ... \.ba1\1031\thm.wxl Error 0x8007006e: Failed to initialize data in bootstrapper application. BR, Branko -- Get 100% visibility

Re: [WiX-users] MsiPackage InstallCondition

2013-01-10 Thread Branko Horvat
I used thorougly DIFxApp instead of DPInst for device driver installation (subject: Installing a driver in Win 7) as you adviced. I used and tested the following InstallConditions: 1. VersionNT64 for installing MsiPackage on x64 platforms and 2. NOT VersionNT64 for installing on x86

[WiX-users] MsiPackage InstallCondition

2013-01-09 Thread Branko Horvat
I've got two msi packages in a wix bundle. I want to install one on x86 platform and the other in case of x64 platform. Is it good if I need for the first case the following condition: NOT VersionNT64 and for the second: VersionNT64? Can be used also Installed AND ... condition in this burn

[WiX-users] Installing a driver in Win 7

2013-01-08 Thread Branko Horvat
I'm trying to make an installer using DPInst.exe as a CustomAction. Although there are some solutions provided, it fails. I can install the driver using rightclick on .inf and Install. I can even use manually DPInst.exe on installed folder. When I use Notepad.exe instead of DPInst.exe it works.

Re: [WiX-users] Installing a driver in Win 7

2013-01-08 Thread Branko Horvat
What do you mean by machine path? You probably mean I call the DPInst64.exe from system path, not from the installed folder. Yes, I checked and there really is one such file in DIFX folder. That could be it. -- Master

[WiX-users] Simple UI with license agreement

2012-09-21 Thread Branko Horvat
Hello, I would like to have a simple UI comprising Hello, EULA, and completion. Using UICommon is ok, but can't include the license agreement. Using UIInstallDir and UIFeatureTree have license but Can't exlude dir or custom dialogue. Do you have any hint how to proceed? Regards, Branko

[WiX-users] !(bind.FileVersion): LGHT0298 - unresolved bind-time variable

2012-09-20 Thread Branko Horvat
Hello, I am trying to bring a VS (2010) solution with one executable project and accompanied installer to build. It works on another machine which has targeted .NET framework 3.5 (so x86) and which uses WiX 3.5. On my similar platform (Win 7 x64) but with .NET framework 4.0 and WiX 3.6

Re: [WiX-users] wix ftdi drivers

2012-09-18 Thread Branko Horvat
(with the help of this mailing list and James) I learned a lot that way. And I will learn using WiX in the future too ;) . Regards, Branko Horvat -- Live Security Virtual Conference

Re: [WiX-users] wix ftdi drivers‏

2012-09-17 Thread Branko Horvat
My driver msi is now set to perMachine installation. When I comment both difx:Driver tags, the files are actually copied into general programFiles (not into user programFiles). But when I uncomment Driver tag, this error occurrs (got from log file under /L* switch): ... DIFXAPP: ERROR: no

Re: [WiX-users] wix ftdi drivers

2012-09-14 Thread Branko Horvat
James, I realised the RemoveFolder tags are necesary because I am installint into userprofile, not for all users on a computer as I hope it want ask admin permission to install. If I remove difx:Driver tag then I can reproduce the file hierarchy - actually not as originally is, since

Re: [WiX-users] wix ftdi drivers

2012-09-13 Thread Branko Horvat
Some comments below; they may not fix your problem, but point to other issues in the WXS: Thanx for all your hints! -Original Message- From: Branko Horvat [mailto:branko_horvat@...] Sent: Wednesday, September 12, 2012 09:27 To: wix-users@... Subject: [WiX-users] wix ftdi

[WiX-users] wix ftdi drivers

2012-09-12 Thread Branko Horvat
Hello, I would like to install two ftdi (VCP: USB to COM) drivers with WiX, among others app stuff. I have the last WiX, i.e. v3.6. I’m bugging with it for quite some days. I’ve read quite a lot of stuff about WiX and about drivers installation. I haven’t checked both .inf files with ChkINF