Re: [WiX-users] MsiPackage InstallCondition

2013-07-11 Thread Gabriel Ivanes
Tim, LANG is just a burn's parameter i choose sets in installation's command line. My need was to get logonuser's language not UserLanguageID (installation is in system context) But custom actions are not possible in Burn and i usually need a script to know which user (hkusers\sid) to look for.

Re: [WiX-users] MsiPackage InstallCondition

2013-07-08 Thread TimM
Gabriel, I am trying to condition my MsiPackage on Language and you have mentioned here the installCondition: InstallCondition="LANG = "fr-FR" AND NOT VersionNT64" So my question where did LANG get defined. I see the Variable set section: But I do not see where/how LANG was set and I only see t

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

Re: [WiX-users] MsiPackage InstallCondition

2013-01-10 Thread Gabriel Ivanes
Hello, - Here are Burn Built-in Variables : http://wix.sourceforge.net/manual-wix3/bundle_built_in_variables.htm - You can also use burn's arguments. : ... I've got two msi packages in a wix bundle. I want to install one on x86 > platform and the other in case o

[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