Re: [WiX-users] Handling VB6 COMs in WiXv2.0

2008-02-06 Thread Peter Jaworski
> > I see, seems I was on the wrong direction. Sorry, but then I could not > help > you further. > Anyway thank you. > > If your question on VB6 Com support based on discussion regarding > ComplusExtension > http://www.nabble.com/WixComPlusExtension-in-Wix-v3-td14923013.html > then I could state t

[WiX-users] uninstallation error

2008-02-06 Thread ramya ragupathy
Hi Currently am trying to code for an uninstaller that would uninstall a specific program of mine. I have implemented this uninstallation through this command path\msiexec /x project.msi and i do this as an custom action later i publish this as an custom action in a push

[WiX-users] XML updates based on a file

2008-02-06 Thread Brian Rogers
Hello, I'm using WiX v3 to build an installer. As part of my install process, I need to read an XML file (packaged with my installer), extract all child elements of the root element and insert the elements into another XML file (already installed on the system). I currently achieve this using

Re: [WiX-users] CustomDlg in WixUI_mondo

2008-02-06 Thread Bob Arnson
Marcel Kulicke wrote: Binder temporary directory located at 'C:\SystemTemp\mfvev3qd'. Validator temporary directory located at 'C:\SystemTemp\pclycvix'. Is C:\SystemTemp the name of your TEMP directory? -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] heat.exe generates different output on Vista vs. XP and crashes for some DLLs

2008-02-06 Thread Bob Arnson
Kirill Kovalenko wrote: Also I've noticed that heat generates < Class> records, but if my memory serves me right, is was Rob who discorages people in this mail list from using records. Does it mean with have to apply some kind of XSLT to translate all the < Class> and records into s?

Re: [WiX-users] How to test rollback?

2008-02-06 Thread Bob Arnson
larsenal wrote: > > That's an immediate CA, which runs before there's anything to roll back. Make it deferred. -- sig://boB http://joyofsetup.com/ - This SF.net email is sponsored by: Microsoft Defy all challenge

Re: [WiX-users] Heating Directories with Identically Named Files

2008-02-06 Thread Bob Arnson
Tanikella, Rajanikanth (SCR US) wrote: > Which leads to the next question: What might be the downside of not > heeding this warning? Undefined behavior. > So far I haven't seen Ids that are non-unique > within their first 72 characters. Then truncate as 72 and you'll get duplicate ID errors

[WiX-users] non admin patching certificate size problem

2008-02-06 Thread rjking
As described in another topic we are wanting to allow non-admin users to patch a previously admin installed exe. Everything is working beautifully except the patch still asks for an admin password and presents a dialog saying an unknown publisher is trying to install something (even though the pa

Re: [WiX-users] How to generate a shortcut with Start In property being specified

2008-02-06 Thread Jordan Fitzgibbon
I think you need to either set the INSTALLDIR property or have WorkingDirectory point to a Directory that you have defined. Eg. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of YungWei Chen Sent: Tuesday, February 05, 2008 6:38 PM To: WixUser Subject: [WiX-users] How to generate

Re: [WiX-users] Handling VB6 COMs in WiXv2.0

2008-02-06 Thread Dominik Guder
Peter Jaworski wrote: > > Once more: Is VB6 COMs registration supported in WIXv3 for now? > Because a few weeks ago I was informed that not, because of some bug. > That is why I have moved backward to WiXv2, so* I have* to use that "ugly" > * > tallow* instead of heat. > I see, seems I was on

Re: [WiX-users] MsiProductCheck from WiX

2008-02-06 Thread RW
I am having to bootstrap the VC++ libraries because of the commit WinSxS changes in Vista. But... I need to prevent the user from running the MSI directly. Since the MSBuild bootstrapper doesn't appear to be able to pass parameters to the MSI, I need another way to detect whether it has been run.

Re: [WiX-users] MsiProductCheck from WiX

2008-02-06 Thread Wilson, Phil
It's not clear to me that this strategy works in two scenarios: 1) You find some version of the VC++ runtimes but it's not the right level. It's (say) VS 2005 but maybe you really need VS 2005 SP1. 2) All the VC++ runtimes are correctly installed, but they were installed using merge modules so

Re: [WiX-users] MsiProductCheck from WiX

2008-02-06 Thread Kalle Olavi Niemitalo
"RW" <[EMAIL PROTECTED]> writes: > How do you create a based on a MsiProductCheck. > > I.e. I want the MSI to fail unless the VC++ runtimes are installed. > > I want to simulate this: Running MsiProductCheck with ProductCode > '{FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4}' If you can find the upgrade

Re: [WiX-users] 32 & 64 MSI's

2008-02-06 Thread Wilson, Phil
Not really Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Rivers Sent: Wednesday, February 06, 2008 6:42 AM To: WiX Users Subject:

Re: [WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-06 Thread Wilson, Phil
Link the required C++ support Dlls with static linking, that should work fine. It doesn't seem to be a UAC issue as described, just the Vista behavior of not committing the CRT etc Dlls to the SxS directories until after your custom action wants to run. Phil Wilson -Original Message-

[WiX-users] MsiProductCheck from WiX

2008-02-06 Thread RW
Hi, How do you create a based on a MsiProductCheck. I.e. I want the MSI to fail unless the VC++ runtimes are installed. I want to simulate this: Running MsiProductCheck with ProductCode '{FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4}' Thanks, RW

[WiX-users] 32 & 64 MSI's

2008-02-06 Thread Jason Rivers
Hi all is it possible to have both 32bit and 64bit system components in the same MSI file - and then only have the 32 bit components install on 32bit windows, and only the 64bit components on 64 bit windows? Jason. - This SF

[WiX-users] Re: Handling VB6 COMs in WiXv2.0

2008-02-06 Thread Peter Jaworski
Thank you for you advices. > > 1)What should I do to make COMs registering? > SelfRegCost="1" is required to perform MSI SelfReg > Source="Libs\AttachW.ocx" SelfRegCost="1" /> > (1 is ok for registry entries it is used for progress bar) Yes, but my question idea was: *How to* invoke tallow

Re: [WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-06 Thread Johan Appelgren
Does your service depend on MSVC DLLs that you are installing, or just the custom action exe that starts the service? If your service does not depend on anything installed in the GAC or winsxs you could just the ServiceControl table instead. Otherwise static linking to the dlls will work, or sched

Re: [WiX-users] Understanding per user/machine level registry restriction.

2008-02-06 Thread Ryan O'Neill
That worked Bob, thanks. From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 02 February 2008 19:08 To: Ryan O'Neill Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Understanding per user/machine level registry restriction. Ryan O'Neill wrote: The following XML generates an ICE

Re: [WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-06 Thread Sneha Gharpure
Thanks for the reply. The problem is that the exe that starts the service is running as a custom action. This exe depends on MSVC DLLs. During installation, this custom action is failing. I believe that this is because the DLLs are not available till InstallFinalize and the custom action is sched

Re: [WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-06 Thread Anidil
This is a problem with UAC on Windows Vista.Disable UAC from User accounts,restart the system and try starting the service.. Sneha Gharpure wrote: > > Hi, > > The problem is that service is not starting on Vista. The service is being > started through one of the custom actions which is an exe

Re: [WiX-users] heat.exe generates different output on Vista vs. XP and crashes for some DLLs

2008-02-06 Thread Kirill Kovalenko
Hello Mike, Thanks for the reply. We've traced the crash and it's caused by an empty multi-string values. The issue seems to have nothing to do proper/improper COM registration so I've opened a bug https://sourceforge.net/tracker/index.php?func=detail

Re: [WiX-users] Handling VB6 COMs in WiXv2.0

2008-02-06 Thread Dominik Guder
Peter Jaworski wrote: > > After build and installation of such setup (where has been used WXS file > produced by tallow) COMs are not registered. > > 1)What should I do to make COMs registering? > SelfRegCost="1" is required to perform MSI SelfReg (1 is ok for registry entries it is used f

Re: [WiX-users] A set of incrementally more complex examples to help writing build automation

2008-02-06 Thread Dominik Guder
Adam Kennedy-3 wrote: > > Does this still imply I need to hand-maintain something after the > initial build? > > Would this limit us from doing things like automated daily builds of > blead/svn versions and so on? > First of all it is cruial (for us) to determine that there are files missin

[WiX-users] Possible dependency failure (ICE25)

2008-02-06 Thread Johan Appelgren
Hi, I'm using a number of merge modules for a project and when building I get an ICE warning that I'm missing a dependency. An improvement to Wix that would be helpful in a situation like this would be if the warning contained information about which merge module it is that requires the missing m