Re: [WiX-users] Patch requires source (error 1706)

2007-07-18 Thread Marc Durdin
This is not documented anywhere that I can see. Can you provide a source for this problem? The thing is, a major upgrade patch is an exact match for our requirement to allow updates to the latest released version of our application without requiring a download of the whole installer. Do you h

Re: [WiX-users] Patch requires source (error 1706)

2007-07-18 Thread Bob Arnson
Marc Durdin wrote: WARNING: A major upgrade patch is being created. A major upgrade patch will have trouble applying to a product which might have patches with sequencing info applied The Patchwiz warning is describing the root cause: Major upgrade patches aren't recommended. Requiring th

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Bob Arnson
K-ballo wrote: > Make sure that the Table that you are adding values to, exists at the > msi database. If I'm not wrong that table is ListBox, so you could try > adding to your project and see if that works. > WiX automatically includes an empty ListBox table if there's any UI. -- sig://bo

Re: [WiX-users] translation sca.wixlib

2007-07-18 Thread Bob Arnson
Stanislav Martinek wrote: Is any posible option how to translate messages from Sca.wixlib? For examle: a message about overwriting dabase when dialog is showed. WiX v2 doesn't support localization in the custom actions. WiX v3 does. In v2, you'll have to rebuild the .wixlib with custom str

[WiX-users] Patch requires source (error 1706)

2007-07-18 Thread Marc Durdin
We have been using WiX 2.0 for some time now, and are running into a problem with our patch upgrades. Despite following the guidelines listed in MSDN for creating patch files that do not require source media, we still end up with a patch that goes through Resolving Source and fails if the original

Re: [WiX-users] heat.exe 9000+ Files Merge Module, warning LGHT1076

2007-07-18 Thread Collins, James
Great thanks for the reply Mike, that makes sense. So could this be classified as a bug in heat.exe? It sounds like heat should be limiting the Component ID to a length of 35 for merge modules? Aka when the "-template:module" flag is used. I did a search through the bugs database for heat

Re: [WiX-users] Problem adding assembly to GAC

2007-07-18 Thread Mike Menaker
I think the name is fine because I can run gacutil.exe on the .dll and get the result I need. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Wednesday, July 18, 2007 12:34 PM To: wix-users@lists.sourceforge.net Subject: Re: [W

Re: [WiX-users] Using XmlFile in a fragment generates an unresolvedreference error

2007-07-18 Thread Mike Dimmick
If WiX 3.0, pass -ext WixUtilExtension.dll on the light command line. If WiX 2.0, link with wixca.wixlib. The definition of the SchedXmlFile custom action which actually performs the XmlFile operation is included in the wixca.wixlib for WiX 2.0. WiX 3.0 allows a .wixlib to be embedded in the ex

Re: [WiX-users] heat.exe 9000+ Files Merge Module, warning LGHT1076

2007-07-18 Thread Mike Dimmick
Components in merge modules have the package GUID appended to the component ID so there isn't a clash if the same component ID is used in multiple merge modules, and no clash between the merge modules and the main installer. It's a way to make the component ID unique. The same happens for a number

[WiX-users] Registry import CA custom action

2007-07-18 Thread Lennox
I've been working on migrating our company's product to a WIX-based installer. We're approaching release, and there's one nasty problem I can't seem to address. During the application of a major upgrade (the new WIX-built MSI), I fully remove the old installation, and install anew. However, I n

Re: [WiX-users] AdminLetter>Citrix virtualization, Windows Vista, and more

2007-07-18 Thread John Vottero
The makers of InstallShield are spamming the WiX users mailing list??? That's a good way to make friends. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Macrovision Sent: Wednesday, July 18, 2007 2:59 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] AdminLetter>Citrix

Re: [WiX-users] Problem adding assembly to GAC

2007-07-18 Thread Wilson, Phil
Make sure that the internal name of the assembly matches the file name. If you renamed the assembly externally but its internal identity is the original name it won't install. As a check, if you try to install it to the GAC with a Visual Studio setup project the symptom of this is a build error "ER

[WiX-users] heat.exe 9000+ Files Merge Module, warning LGHT1076

2007-07-18 Thread Collins, James
Hey all, I was wondering if someone can help me with this issue. I'm creating a very large merge module 9000+ files, everything looks fine except when I try to include the MSM in wise which suggests there are problems with directory and component tables (yes fantastic error reportin

Re: [WiX-users] Supported platforms

2007-07-18 Thread Kalle Olavi Niemitalo
Joachim Back <[EMAIL PROTECTED]> writes: > InstallerVersion="300" Compressed="yes" Languages="!(loc.LANG)" > Platforms="Intel;1031,1033" > xmlns="http://schemas.microsoft.com/wix/2006/wi";> > > Anyway, Light does not like it: > error LGHT0204 : ICE39: PID_TEMPLATE value in Summary Inf > ormatio

Re: [WiX-users] How to call an exe

2007-07-18 Thread Daryn Mitchell
I found it very easy to debug a DLL CA with the debugger: I figured the DLL in the binary table has to be extracted before the code can be called, right? So the following seemed to work for me to debug an error I was getting while developing the CA: 1) Use a debug version of the DLL 2)

Re: [WiX-users] Recursive Xml changes

2007-07-18 Thread Kevin Burton
I have a similar problem with XmlFile. I need to be able to change multiple nodes. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas M Sent: Wednesday, July 18, 2007 5:05 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Recursive Xml change

[WiX-users] Using XmlFile in a fragment generates an unresolved reference error

2007-07-18 Thread Rory Clark
I'm trying to put together a sample on how to modify web.config using our tool to generate WiX source files and a NAnt build script to build them. At this stage, I'm just trying to get the generated source to work with the fragment I've written. When I call light.exe with the lib_install.wixobj and

[WiX-users] Problem adding assembly to GAC

2007-07-18 Thread Mike Menaker
I have encountered a problem adding some assemblies to the GAC. The assembly I'm trying to add is wrapper to a COM object. When I just use TLBIMP it works fine. However I added versioning by: Using ildasm.exe to disassemble Then appending a resource file and using ilasm.exe to re asse

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Christopher Painter
I'm suprised that you would have to force the existence of the ListBox table in the first place. ISHNMET drops most tables from the resultant MSI when they contain no table data, but it leaves some tables like ListBox because they could be needed at install time. After all, everyone has a UI

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Alexei
K-ballo wrote: > > Make sure that the Table that you are adding values to, exists at the > msi database. If I'm not wrong that table is ListBox, so you could try > adding to your project and see if that works. > > K-ballo.- > Thanks for the reply. I'm fairly sure the table is there and is

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread K-ballo
Make sure that the Table that you are adding values to, exists at the msi database. If I'm not wrong that table is ListBox, so you could try adding to your project and see if that works. K-ballo.- Alexei Zhyzhyn escribió: > Hi everyone, > what I'm trying to do is to populate a listbox in my in

[WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Alexei Zhyzhyn
Hi everyone, what I'm trying to do is to populate a listbox in my install with a set of name-value pairs - so that when a user selects a name in the listbox, the listbox property is set to the value corresponding to that name. I know this can be done with something like:

Re: [WiX-users] Reboot during Copying Files stage

2007-07-18 Thread Man, Shirley
In this test, there were about 15 files, 8 Mb each. From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 17, 2007 8:32 PM To: Man, Shirley Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Reboot during Copying Files stage Man, Shirley wr

Re: [WiX-users] problem scheduling custom actions

2007-07-18 Thread Scott Sam
Thank you. That was the problem. The information contained in this email is privileged and confidential and is intended solely for the addressee(s). If you are not the intended recipient, please respond to [EMAIL PROTECTED] th

[WiX-users] translation sca.wixlib

2007-07-18 Thread Stanislav Martinek
Is any posible option how to translate messages from Sca.wixlib? For examle: a message about overwriting dabase when dialog is showed. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version o

Re: [WiX-users] How to call an exe

2007-07-18 Thread Richard.Foster
It seems you didn't look very hard. There is an example right there in the tutorial: http://www.tramontana.co.hu/wix/lesson3.php#3.2 Look specifically at the notepad example, and you will see that the command line parameters would go in the ExeCommand attribute. As far as your complaints ab

[WiX-users] Help on features creation

2007-07-18 Thread Anidil
Can anybody guide me on how to create the following features using WIX. 1.Hardware requirement verification 2.Silent Install 3.Autorun 4.Quick launch 5.CD / Web distribution help will be greatly appreciated -- View this message in context: http://www.nabble.com/Help-on-features-creation-tf41028

[WiX-users] How to control progress bar control

2007-07-18 Thread JerryOELoo
Hi All: I am a newbie about WIX, I have a question about it. Currently, I have a progress bar in dialog, when do the custom action, The progress bar will increase, however, the progress bar will increase from 0-100% twice, I just want the progress bar increase from 0 to 100%

[WiX-users] Recursive Xml changes

2007-07-18 Thread Thomas M
Hi list, I have created the following CA: (names modified for privacy) I would expect the XPath //Action to return multiple elements, however only the first is changed. What is the recommended way to do recursive changes in an XML-file? Thanks. Regards, Thomas -- View this message in contex

Re: [WiX-users] Creating a service using WIX

2007-07-18 Thread Anidil
Hi John Thanks for your suggestion..It helped me :) John Vottero wrote: > >> I get the following error while running the .msi created by using the >> following code to create a service using WIX.GService.exe is the >> service exe >> file.I've copied installutillib.dll,GService.exe to the wix-bi

Re: [WiX-users] minor Updates

2007-07-18 Thread Frédéric Viollet
Bob Arnson a écrit : Frédéric Viollet wrote: Ok.Thanks. Is there a documentation somewhere on how to use the setupexe bootstrapper? Not really, no. Here's the command line I use to build one: "%WIX%\setupbld" -out "%DIR%\foo.exe" -mcsp "%DIR%\foo.msi" -setup "%WIX%\setup.exe" Value="Choos

[WiX-users] Supported platforms

2007-07-18 Thread Joachim Back
Hi, I am using WiX v3. I have listed the platforms for my Installer as documented here: http://msdn2.microsoft.com/en-us/library/aa372070.aspx My value is http://schemas.microsoft.com/wix/2006/wi";> Anyway, Light does not like it: error LGHT0204 : ICE39: PID_TEMPLATE value in Summary Inf ormatio