Re: [WiX-users] Proper Way To Set a Property in Merge Module

2008-11-14 Thread John Nannenga
Use a configurable merge module. Ref: http://msdn.microsoft.com/en-us/library/aa368027(VS.85).aspx From: Castro, Edwin (Hillsboro) [EMAIL PROTECTED] Sent: Thursday, November 13, 2008 1:56 PM To: General discussion for Windows Installer XML toolset. Subjec

[WiX-users] Drop Down in installer

2008-11-14 Thread siaj
Hello, Can any body share me with me a code sinippet to populate a drop down combo box from a vbscript custom action ? I am having a scenario where I have to populate a combo box from vbscript which is a list of databases from the given server. Thanks, siaj ---

[WiX-users] Orca Replacement

2008-11-14 Thread Neil Sleightholm
I thought people on this list might be interested in this: http://www.instedit.com/. As it says on their web site "If you use Orca, you will love InstEd" - ok it's a bit over the top but I think it is a better alternative to Orca and saves downloading the SDK. Note: I have no connection with th

Re: [WiX-users] Help! I lost my CustomActions and I don't know

2008-11-14 Thread Jason Kemp
After further investigation, it's not pulling anything from the CustomAction.wxs file at all, even if I introduce new properties. For a while, even adding something to Product.wxs was not getting picked up. I rebooted my PC and that's at least fixed, so now I can add everything to one file. But

Re: [WiX-users] Always Reinstall a Component

2008-11-14 Thread Gavin Bee
Thanks to everyone for jumping in and providing exactly the information that I needed. Here's what I ended up with: Installed AND NOT (REMOVE ~= "ALL") AND NOT REINSTALL Thanks again, Gavin :) -Original Mes

[WiX-users] error LGHT0204: ICE80: This 64BitComponent ProductComponent uses 32BitDirectory INSTALLLOCATION

2008-11-14 Thread loganmathews
I am creating a wix v3 project that will be built with x86 and x64 platforms. It builds fine with x86, but it is giving me the following error when I build with x64: error LGHT0204: ICE80: This 64BitComponent ProductComponent uses 32BitDirectory INSTALLLOCATION How can I get this to work with x

[WiX-users] Find registry value and use it in a shortcut

2008-11-14 Thread JLM
I have a few questions on getting my first WiX installer working. I am making a package for a Tcl script and its support files. I would like to be able to read the registry to determine where TCL is installed. ActiveState TCL uses a version number in their key (e.g. HKLM\SOFTWARE\ActiveState\Ac

[WiX-users] how to update display on Features dialog if INSTALLLOCATION changes

2008-11-14 Thread Amy Rosewater
Hi All, I have an install in which I modify my INSTALLLOCATION property through a custom action that is executed by a button press. This is all working correctly, but when I get to my "Features" dialog, the path still shows the original INSTALLLOCATION. My "Features" dialog has a browse butto

[WiX-users] Help! I lost my CustomActions and I don't know why!

2008-11-14 Thread Jason Kemp
I'm using WiX to install a Windows Mobile app on a device, which is entirely done through custom actions. Something really strange happened to my wix project after copying it to a new location on the filesystem and re-arranging the solution folder structure. I'm using Votive for 2008 (Wix too

Re: [WiX-users] Patching SQL Database with script

2008-11-14 Thread cemiles
I'm extremely interested in this myself. I know Rob pointed out using sqlscript/string, but I'm getting a failure on my patch as well when doing that stating 'unable to connect to database'. I've read in some forums sql db's don't lend themselves to patches. That could be completely inaccurate

[WiX-users] remote sql db on patch

2008-11-14 Thread cemiles
has anyone figured out how to get a remote sql db to fire off scripts on a patch? my initial install works fine, but the patch fails saying it can't connect to [DBNAME]. SQLTYPE=3 Any ideas?

Re: [WiX-users] How to implement repair option without UI

2008-11-14 Thread zett42
Because the files are non-versioned, MSI treats them as user-files and does not reinstall them if they are modified. See http://msdn.microsoft.com/en-us/library/aa368599(VS.85).aspx Raj P wrote: > > Hi, >The current problem, that I am fighting with is > > I have an msi which has simple UI

Re: [WiX-users] Always Reinstall a Component

2008-11-14 Thread Neil Sleightholm
Just in case anyone else if following this, it doesn't work! Well actually most of does expect this: The feature value doesn't get set unless the feature is changed so if you reinstall and leave everything the same the wrong value is written to the registry. Neil Neil Slei