Re: [WiX-users] Multi-file assembly problem

2007-12-06 Thread Maletz, Josh
Have you tried putting them in separate components or just using the CopyFile element? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Geoff Finger Sent: Thursday, December 06, 2007 6:16 PM Cc: wix-users@lists.sourceforge.net; [EMAIL PROTECTED] Subject:

Re: [WiX-users] Multi-file assembly problem

2007-12-06 Thread Geoff Finger
Yes, I'm creating the manifests myself. Or rather I'm taking the automatically generated manifests, modifying them if necessary, and signing them "by hand" using mt.exe, makecat and signtool. I started out with manifest dependencies in DLL1 for DLL2 and DLL3, but that doesn't help with a LoadLibra

Re: [WiX-users] Multi-file assembly problem

2007-12-06 Thread Kelly Leahy
Are you creating the manifest yourself? You should be able to create a manifest that has dependency references in it for DLL2 and DLL3... See the and tags in Manifest reference: http://msdn2.microsoft.com/en-us/library/aa374219.aspx It also looks like you can put multiple files in a single 'a

Re: [WiX-users] Multi-file assembly problem

2007-12-06 Thread Geoff Finger
The problem is that if I installed everything via the old method (each of the three files set up as its own assembly with its own WinSxS folder) and then copied the DLL2 and DLL3 files from their WinSxS folders into the WinSxS folder for DLL1 then everything ran correctly. If i can just recreate t

Re: [WiX-users] Multi-file assembly problem

2007-12-06 Thread Kelly Leahy
> Or it _does_ cause them to get copied over to the DLL1 side-by-side > folder, but then my program can't find DLL1 anymore for reasons I > can't figure out. Uhh... I think I can explain this one. Consider the following case: DLL1 in folder DLL2 in folder DLL1 loads DLL2 using LoadLibrary (a

[WiX-users] SQLExtension

2007-12-06 Thread Quattro IV
Hello, the wix wiki regarding the SQLExtension mentions "There is a serious bug with how the *SqlExtension* handles the SqlDatabase Elementwhen creating a database. If a database with the same name *already exists* it will always be *dropp

[WiX-users] Multi-file assembly problem

2007-12-06 Thread Geoff Finger
Short version: Is there any way to override what seems to be the default behavior and force Wix/msi to install additional file elements in an assembly Component into the WinSxS folder even though they aren't included in the main file's manifest? Or alternately are there any kind and generous souls

Re: [WiX-users] Votive on VS 2008?

2007-12-06 Thread Chris Bardon
I'm using 3.0. Note that I didn't just try reinstalling (I have both VS 2005 and 2008 installed on my laptop), since I was worried that might mess up the associations with the 2005 IDE. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Richard Sent: Thursda

Re: [WiX-users] [WiX-commits] Wix 2 and service

2007-12-06 Thread Gonzalo Diethelm
Ok, I am recanting from my past sins and turning to ServiceInstall and ServiceControl and away from my CustomActions to install / uninstall my service. However, I get the exact same symptom as before: when uninstalling the service, there is a long pause. Since it's been some time, allow me to resta

Re: [WiX-users] Condition Privileged not working

2007-12-06 Thread Gonzalo Diethelm
This was happening due to some weird interaction between ALLUSERS and all version of the app already installed. It is working now. Thanks a lot. On Thu, 2007-12-06 at 15:59 +0100, Stefan Pavlik wrote: > Hi... > > I am using similar condition with WiX 2.0 for two years and it is > working OK. >

[WiX-users] Multiple cab files per media element (disk)

2007-12-06 Thread Craig Miller
How can I specify that several cab files should be placed on a single media element? I am receiving an error: light.exe : fatal error LGHT0017 : Failed to create cab 'C:\Users\Craig\AppData\Local\Temp\v_zodjcx\AZ2.cab' while cabbing file '..\USGS Topographic\24\AZ\o33110G7.tif' with error 0x8

[WiX-users] XmlFile cannot access network drive

2007-12-06 Thread Mendelson, Michael
> I am using Wix 3.0 for an installation to a network drive. During the > install an xml configuration file is put into the install directory, > and then values are pushed in using XmlFile. > > This breaks during XmlFile when installing to a network drive, because > of access issues. > > The f

[WiX-users] Disabling the next button in a feature tree dialog when no features are selected

2007-12-06 Thread Robert.Priest
Hello everyone, I know this has been covered before... And I have read the posts at: http://www.nabble.com/Disabling-Next-if-no-features-selected-tf2333818.h tml#a6493541 http://www.nabble.com/Disabling-the-next-button-in-a-feature-tree-dialog -when-no-features-are-selected-tf2333648.html#a6492

Re: [WiX-users] Create Directory with name from Property

2007-12-06 Thread Richard
In article <[EMAIL PROTECTED]>, EricT-in-Ottawa <[EMAIL PROTECTED]> writes: > I'm trying to (using WiX V2) create a directory where the name is supplied > via CustomAction. The customaction determines the name and creates a > property [...] The reason this doesn't work is that the column d

Re: [WiX-users] Votive on VS 2008?

2007-12-06 Thread Richard
In article <[EMAIL PROTECTED]>, "Chris Bardon" <[EMAIL PROTECTED]> writes: > Just out of curiosity, has anyone done a rebuild for the Votive plugin > to work with VS 2008? I just installed the RTM this week, and I'm > looking to try moving some of my VS2005 projects up. So far, anything >

[WiX-users] Create Directory with name from Property

2007-12-06 Thread EricT-in-Ottawa
I'm trying to (using WiX V2) create a directory where the name is supplied via CustomAction. The customaction determines the name and creates a property (I've also supplied the property on the msiexec command-line, same diff). But I don't know how to specify the LongName and Name fields of the D

Re: [WiX-users] Handling Feature Dependencies

2007-12-06 Thread Robert.Priest
That may be it. I am using 3.0.2925.0. I will upgrade to the latest weekly release (looks like right now its 3.0.3530.0) , and try that. I will let you know how it goes. From: John Hall [mailto:[EMAIL PROTECTED] Sent: Thursday, December 06, 2007 5:16 AM To: Robert Priest Cc: wix-users@lists.so

Re: [WiX-users] Condition Privileged not working

2007-12-06 Thread Stefan Pavlik
Hi... I am using similar condition with WiX 2.0 for two years and it is working OK. You should check the verbose log of the installation. msiexec.exe /i YourProduct.msi /l*v log_file.log regards Stefan Gonzalo Diethelm wrote: > Hello everyone, > > I need a Wix 2.0 package to be installed onl

[WiX-users] Votive on VS 2008?

2007-12-06 Thread Chris Bardon
Just out of curiosity, has anyone done a rebuild for the Votive plugin to work with VS 2008? I just installed the RTM this week, and I'm looking to try moving some of my VS2005 projects up. So far, anything that includes a setup won't build.

[WiX-users] Condition Privileged not working

2007-12-06 Thread Gonzalo Diethelm
Hello everyone, I need a Wix 2.0 package to be installed only by administrator users, so I added the following as a child of the Product element: Privileged Then I logged in as a non-administrator user in Windows XP SP2 and ran the installer. I never saw the "Admins only" message, and the ins

Re: [WiX-users] Re posting Condition for Silent Install

2007-12-06 Thread SaiTeja
Hi Stefan, Thanks a lot... Its working now. Thanq so much Stefan Pavlik-2 wrote: > > Hi Again... > > You cannot use the INSTALLUILEVEL_NONE string in the WiX. It is > defined only in some C++ header file and you can use it in the C++ > project. > You need to use the UILevel property. It mea

Re: [WiX-users] Re posting Condition for Silent Install

2007-12-06 Thread Stefan Pavlik
Hi Again... You cannot use the INSTALLUILEVEL_NONE string in the WiX. It is defined only in some C++ header file and you can use it in the C++ project. You need to use the UILevel property. It means: UILevel=2 UILevel is name of property and 2 is value which means INSTALLUILEVEL_NONE. Regar

Re: [WiX-users] Handling Feature Dependencies

2007-12-06 Thread John Hall
What version of WiX are you using? I found a bug with FeatureGroups earlier in WiX 3 (https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1760155&gr oup_id=105970 ), which apparently has been fixed. J

Re: [WiX-users] Output Window bugs with latest versions of Wix?

2007-12-06 Thread Anthony Wieser
I couldn't find it in the bug database. And it looks like you meant the Error List window in VS2005, not the Task Pane. I can confirm that the messages show up in the Error List though, so thanks for the workaround. Anthony Wieser Wieser Software Ltd - Original Message - From: "Just