Re: [WiX-users] Managed Bootstrapper application - internal msi UI appearing *behind* the bootstrapper UI

2014-06-06 Thread Tunney, Stephen
Yes, you are correct in that assumption. From: Jeremiahf [jeremi...@gmail.com] Sent: June 6, 2014 5:18 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Managed Bootstrapper application - internal msi UI appearing *behind* the boots

Re: [WiX-users] Multi-language WiX installer to display different EULA's

2014-06-06 Thread Rob Mensching
Use a loc variable instead. Wxl files are not preprocessed. ___ FireGiant | Dedicated support for the WiX toolset | http://www.firegiant.com/ -Original Message- From: TimM [mailto:timmay...@smarttech.com] Sent: Thursday, J

Re: [WiX-users] Managed Bootstrapper application - internal msi UI appearing *behind* the bootstrapper UI

2014-06-06 Thread Jeremiahf
I'm assuming you have this in your value in your MsiPackage chain? DisplayInternalUI="yes" On Thu, Jun 5, 2014 at 12:10 PM, Tunney, Stephen wrote: > Does anyone know how I can fix this? We are hitting this with an internal > UI is being displayed on the screen. Doesn't look too good :( > > S

Re: [WiX-users] RegistrySearch doesn't find Key

2014-06-06 Thread Pavan Konduru
Try putting type ="directory" -Original Message- From: Brett Faurot [mailto:brett.fau...@dh.com] Sent: Friday, June 06, 2014 12:32 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] RegistrySearch doesn't find Key I'm having problems using a registrysearch. I'm trying to get the

[WiX-users] RegistrySearch doesn't find Key

2014-06-06 Thread Brett Faurot
I'm having problems using a registrysearch. I'm trying to get the install location of MS SQL Reporting Services by checking the registry; but, my installer is failing the find the key. This same method is used successfully many other times in this installer. Also, I can successfully

[WiX-users] RegistrySearch doesn't find Key

2014-06-06 Thread Brett Faurot
I'm having problems using a registrysearch. I'm trying to get the install location of MS SQL Reporting Services by checking the registry; but, my installer is failing the find the key. This same method is used successfully many other times in this installer. Also, I can successfully

Re: [WiX-users] msimsp - Cannot Generate a Primary Transform

2014-06-06 Thread Phil Wilson
Probably stuck, it's database stuff where things are searched for using the primary key so it's not safe to change it between the base and an update. --- Phil Wilson On Fri, Jun 6, 2014 at 9:53 AM, George Fleming wrote: > Using Wix3.5, I modified a to add a new column, and using thi

[WiX-users] msimsp - Cannot Generate a Primary Transform

2014-06-06 Thread George Fleming
Using Wix3.5, I modified a to add a new column, and using this new column as the primary key. This custom table is used by a custom action during patching. In doing so, I get a msimsp error 0xc00e5173, and a message "Cannot Generate a Primary Transform". Searching the Internet, I found some

[WiX-users] unsubscribe

2014-06-06 Thread William Heitler
Dr W J Heitler School of Biology University of St Andrews 01334 463460 www.st-andrews.ac.uk/~wjh -Original Message- From: sandyGSS [mailto:sandhya@gmail.com] Sent: 06 June 2014 15:07 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] .ocx file is not registered in windows

Re: [WiX-users] .ocx file is not registered in windows 8

2014-06-06 Thread Carter Young
Your having this issue because Windows 7 doesn't use the old format OBDC drivers. It uses the new ACE format. Carter Quoting sandyGSS : > But I tried to check in my machine when I got the error. But there aren't any > odbc drivers and also for our product we try to use oledb drivers . > > Let

Re: [WiX-users] .ocx file is not registered in windows 8

2014-06-06 Thread sandyGSS
But I tried to check in my machine when I got the error. But there aren't any odbc drivers and also for our product we try to use oledb drivers . Let me try to add one by one module in to the msi and test it out. Thanks Sandhya -- View this message in context: http://windows-installer-xml-wi

Re: [WiX-users] .ocx file is not registered in windows 8

2014-06-06 Thread Carter Young
My guess on this is that your development machine has no OBDC32 driver installed. If the OS is 64-bit, my assumption is correct. See: http://msdn.microsoft.com/en-us/library/aa368797(v=vs.85).aspx Quoting sandyGSS : > Young I am able to resolve all the issues by adding ensuretable but couldn

Re: [WiX-users] .ocx file is not registered in windows 8

2014-06-06 Thread Carter Young
No, but comment out all the merge modules and references, then add them in one at a time then recompile then add 1 then recompile etc until you find the one causing the issue. Once you find it, we will have to find a fix, which may not exist, which leads us back to the point I tried to mak

Re: [WiX-users] .ocx file is not registered in windows 8

2014-06-06 Thread sandyGSS
Young I am able to resolve all the issues by adding ensuretable but couldn't resolve only one issue Error 1 ICE02: Component 'Global_System_OAREG.900AE6ED_B3C8_4C1C_B3A7_EBA22F9EE105' references ODBCDataSource 'Global_System_OAREG_r0.900AE6ED_B3C8_4C1C_B3A7_EBA22F9EE105' as KeyPath, but th

Re: [WiX-users] Copy output MSI file from bin location to other location

2014-06-06 Thread Markus Wehrle
Hi, you can add a copy command in Post-Build Event to achieve this. In project settings -> Build Events add "copy /Y !(TargetPath) C:\MSI" to post build event command line Or add copy /Y !(TargetPath) C:\MSI to you wixproj. Markus Wehrle > Dileep S hat a