Re: [WiX-users] Setting property value with another property value

2006-11-07 Thread Lerudjordet, Morten Minge
Thank you, I started messing around with the source code and found that QuitExec seems to be unmanaged code, and therefore was starting to think what you confirmed. As I explained previously I have the code up and running using a CA with ExeCommand(both config files are installed): CustomAction

Re: [WiX-users] Com LocalServer32 in 8.3 format

2006-11-07 Thread Dyson, Peter
I am currently using v3.0.1703.0 a bit old in the tooth now but have not had time to use any later. Peter -Original Message- From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: 07 November 2006 03:34 To: Dyson, Peter Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Com

Re: [WiX-users] preprocessor variable $(var.Build)

2006-11-07 Thread Foster, Richard - PAL
Oliver, I'm still a bit unsure about where you are getting the error (I.e. are you building the installation from the command line? Within Visual Studio 2005? Somewhere else?). Unfortunately, I also don't use Votive so the vast majority of this reply is guesswork! I suspect that the

Re: [WiX-users] Setting property value with another property value

2006-11-07 Thread Bob Arnson
Lerudjordet, Morten Minge wrote: As I explained previously I have the code up and running using a CA with ExeCommand(both config files are installed): CustomAction Id=XMLParser BinaryKey=XmlPreprocess Impersonate=yes Yes, MSI supports running an executable from the Binary table.

Re: [WiX-users] preprocessor variable $(var.Build)

2006-11-07 Thread Justin Rockwood
Yep, Oliver summed it up pretty well. As far as Votive is concerned, you can define the preprocessor variable by entering Configuration=$(Configuration) on the compiler property page (not linker property page). Also, make sure to put the parenthesis (which you missed in your example

[WiX-users] Merge Modules Read Main Install Property

2006-11-07 Thread Tina Basinger
I have a case where my merge modules need to tell if they are running in an upgrade, or a fresh install. I have a property that is getting set in my main install to indicate that an upgrade is occurring. I thought that I could then just use that property in my merge modules to condition actions to

[WiX-users] CheckBox question...

2006-11-07 Thread Chris Lovett
Im trying to put a check box on my license agreement dialog using the following: Control Id=AgreeCheckBox Type=CheckBox Text={\DlgFont8}I amp;accept the terms in the License Agreement X=5 Y=207 Width=250 Height=15 Property=LicenceAccepted CheckBoxValue=1/ Where the property is

Re: [WiX-users] Merge Modules Read Main Install Property

2006-11-07 Thread Dana Gutride
Tina:Take a look at the IgnoreModularization tag. You define it in the merge module wxs file.(IgnoreModularization Name=PATCHFOUND Type=Property /)Dana On 11/7/06, Tina Basinger [EMAIL PROTECTED] wrote: I have a case where my merge modules need to tell if they are running in an upgrade, or a fresh

Re: [WiX-users] Merge Modules Read Main Install Property

2006-11-07 Thread Mike Dimmick
Are you distributing this merge module to anyone else who isn't using WiX? If not, it may be a lot easier to convert from a Module to a Fragment and simply link it into the main installer. light can accept any number of .wixobj and .wixlib files on the command line. The only restriction is

Re: [WiX-users] heat website throws exception

2006-11-07 Thread Mike Dimmick
Which version of WiX are you using? What operating system is this problem occurring on? Which version(s) of the .NET Framework do you have installed? Technical detail: get_Count will throw a NotSupportedException if the underlying ADSI object doesn't implement the IADsPropertyList interface. The

[WiX-users] error LGHT0204 : ICE39: PID_WORDCOUNT value in Summary Information Stream is not valid. Source image flags must be 0, 1, 2, or 3.

2006-11-07 Thread Deepa Choundappan
Hi, I am using WiX to create my msi package. I just moved to building with Wix 3.0 and I hit the exception error LGHT0204 : ICE39: PID_WORDCOUNT value in Summary Information Stream is not valid. Source image flags must be 0, 1, 2, or 3. during linking. Changing the InstallPrivileges=limited to

[WiX-users] How do I install a Win32 service that uses SvcHost.exe?

2006-11-07 Thread Byron Changuion
Hi, I have a Win32 service that should be installed with my MSI. The typical WIX entry for a service would look something like: Component Id='MyDemoComponents' Guid='----' File Id=MyServiceDll Name='MySvcDll.dll' LongName='MyService.dll' DiskId='1'

Re: [WiX-users] How do I install a Win32 service that uses SvcHost.exe?

2006-11-07 Thread Mike Dimmick
Microsoft has never documented how the shared service hosting through SvcHost.exe works, so it's pretty much only MS who can create such a service. The Type can be set to "shareProcess", but I think this is still meant for installing your own EXE which hosts multiple services, rather than a

Re: [WiX-users] How do I install a Win32 service that usesSvcHost.exe?

2006-11-07 Thread Wilson, Phil
Also, one of the restrictions on svchost.exe is that you can't name it as an authorized application to get through the Windows firewall,just to give you a heads up in case you might want to do that. Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike

[WiX-users] Problem with patching

2006-11-07 Thread Ip Wing Kin John
Dear all, I ran into a problem when I try to run the msp file. I followed the steps in the Wix tutorial to generate a msp patch for a msi package. If I use command line to install the patch, it works fine. However, if I simply double click on the msp file, the Modify , Repar and Remove UI comes

[WiX-users] How to re-install files..

2006-11-07 Thread vij
Hi, In our project we have daily builds. For daily buils we are NOT changing the product ID,package IDandupgradeID. So when user tries to install latest build, it will give repair option, which will re-install the package. This is working fine, as long as no new files are added to the

[WiX-users] Property name to be used in MsiGetProperty

2006-11-07 Thread Pallavi Patrutkar
Hello, I am trying to pass a property to a method in a DLL. But I am not getting the actual property value in my DLL through MsiGetProperty. It returns the length of parameter as zero. But still method returns successfully. Can you tell me exactly which string from WXS file should I

[WiX-users] Line edit control

2006-11-07 Thread André Pönitz
I've just started to use Wix v3 (or any .msi based installer toolkit for that matter) so please bear with me. First question: How would I add a line edit control to a dialog? I have found examples for PushButtons, RadioButtons, static text etc but nothing that looks like something that might

[WiX-users] Embedding another msi based installer

2006-11-07 Thread André Pönitz
I have a third party product with an msi based installer that I need to install alongside my own stuff. Simply launching msiexec from a custom action does not seem to work as msiexec will complain that another installer (presumably my own) is already running. Decompiling the third party