[WiX-users] WIX - framework localization

2012-12-06 Thread MichaƂ Domeredzki
Hi I am prepering *wxs file for install, and I have Condition Message=Don't have framework ![CDATA[Installed OR NETFRAMEWORK40FULL]] /Condition And at different computers MSbuild trying to find language pack for framework depends of culture of computer. Is it possible to check if user just

Re: [WiX-users] Regisytry Entry Permissions

2012-12-06 Thread Peter Shirtcliffe
Permissions are not cascaded down to subkeys. There might even be a bug/feature request still outstanding for it. -Original Message- From: Chaitanya [mailto:chaita...@pointcross.com] Sent: 06 December 2012 07:49 To: WiX-users@lists.sourceforge.net Subject: [WiX-users] Regisytry Entry

[WiX-users] Supporting Windows 8

2012-12-06 Thread Sanjay Poria
I have a msi built using Wix3.5 which has a conditional check on .NET 3.5 SP 1 being installed on the target machine like so: PropertyRef Id=NETFRAMEWORK35/ PropertyRef Id=NETFRAMEWORK35_SP_LEVEL/ Condition Message=This application requires .NET Framework 3.5 Framework SP1 or later

Re: [WiX-users] Regisytry Entry Permissions

2012-12-06 Thread Natalie Carr
This is what I had to use to get around that: Component Id=RegistryEntries Guid=* Win64=$(var.Win64) Directory=TARGETDIR RegistryKey Root=HKLM Key=Software\Manuafcturer\[PRODUCTNAME] ForceDeleteOnUninstall=yes ForceCreateOnInstall=yes !--RegistryValue Type=string

Re: [WiX-users] Prevent logging

2012-12-06 Thread Rob Mensching
No, you can't override that bit without recompiling the .wixlib it's in. That's why I suggested filing a bug so we are sure to fix it for the next release. smile/ On Wed, Dec 5, 2012 at 10:37 PM, Grigory Konovalov grigory.konova...@confirmit.com wrote: The CustomAction element needs a

[WiX-users] Falling back to default language if locale is not present

2012-12-06 Thread Shaun Greenfield
Hoping someone has an idea if this is even possible. We used to have an English only installer but changed recently to a multi-language version. Based on the recommended way we created a transform for Japanese and then referenced those string references. When we tried to install on another

Re: [WiX-users] Supporting Windows 8

2012-12-06 Thread Pally Sandher
Windows 8 should have .NET 3.5 (and 4.0) support built in. I think the WiXNetFxExtension you're using hasn't been updated to take this into account when setting those properties. If you're using WiX v3.7 bug report it at http://sourceforge.net/p/wix/bugs/ To work around it in the meantime,

Re: [WiX-users] run Sql commands through wix

2012-12-06 Thread John H Bergman (XPedient)
Does anyone have an example of this they could share or point me to? -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Wednesday, December 5, 2012 9:09 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] run Sql commands through

Re: [WiX-users] Supporting Windows 8

2012-12-06 Thread Christopher Painter
Technically it's supported, however, Windows 8 has the .NET 3.5 ( and 2.0/3.0 ) disabled by default. Additionally it's a windows update download when activating as it's not cached locally on the hard drive. From: Pally Sandher