Re: [WiX-users] Adding a custom action (type 6) in a patchpackage(msp)

2008-01-31 Thread Paul Chrzanowski
Hello, Alexander, thanks for the fast reply, but unfortunately the binary element is not missing in our .wxs file. Here is what our file looks like: http://schemas.microsoft.com/wix/2006/wi";>

[WiX-users] How to build multiple patches?

2008-01-31 Thread Corey Alix
I created a sample application (v1.0.0.0) with two patches (v1.0.0.1 and v1.0.0.2). I'm able to install V1.0.0.0 and patch it with v1.0.0.2 and then patch it again with v1.0.0.1. The files from the v1.0.0.1 patch replace files that were installed with the v1.0.0.2 patch. Is this correct and i

[WiX-users] How can I use RegistrySearch to check if a key exists

2008-01-31 Thread Thomas Hargrove
I am trying to determine if a registry key exists, but the key is a empty string. If I change the string in the registry to contain something, I get the correct value in my property. If the registry string is empty, I get an default value of the property. It seems there is no way to simply deter

Re: [WiX-users] InstallExecuteSequence for Sql Actions

2008-01-31 Thread Adam Majer
Chris Eldredge wrote: > I'm trying to create an MSI that installs a .NET assembly and registers > it for use in SQL Server 2005. > > The problem is that the SQL I'm executing inside a SqlString is telling > SQL Server to load the assembly, but when I install the MSI it seems > that the assembly

Re: [WiX-users] Size of feature

2008-01-31 Thread Wilson, Phil
Then do it in a bootstrap program. Use the SDK examples for MsiGetFeatureCost that open the MSI file and do the costing and get the feature costs, then launch the MSI with a command line that sets the TARGETDIR property to a destination disk with enough space. That's actually quite straightforwa

[WiX-users] InstallExecuteSequence for Sql Actions

2008-01-31 Thread Chris Eldredge
I'm trying to create an MSI that installs a .NET assembly and registers it for use in SQL Server 2005. The problem is that the SQL I'm executing inside a SqlString is telling SQL Server to load the assembly, but when I install the MSI it seems that the assembly hasn't been copied to its final d

Re: [WiX-users] Check a property has a slash on the end

2008-01-31 Thread Kalle Olavi Niemitalo
"Richard Wilde" <[EMAIL PROTECTED]> writes: > I have a property called [MAXIMIZERDIR] which the user has browsed to using > a custom dialog. > > I want WIX to automatically append a backslash to the end of this property > if it does not already have one. This can be done just with the Windows In

Re: [WiX-users] Adding a custom action (type 6) in a patchpackage (msp)

2008-01-31 Thread Alexander Shevchuk
Paul, Sounds like your WiX code is missing the element. Basically, the idea is: - Create a record in the CustomAction table: - Create a record in the Binary table: - Schedule a custom action: Alex From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On B

Re: [WiX-users] Weekly build missing WixComPlusExtension.dll in wix3-binaries.zip

2008-01-31 Thread alexbirk
I am also concerned about this issue. Since WiX-3.0.3621 we can't move to new Wix builds because of the lack of ComPlusExtension. Rob Livermore wrote: > > Dear: Weekly build operator. > > The WIX 3.0 is turning into a very nice package. It has been > meeting the needs for deployment. >

[WiX-users] reference to properties between fragments/mergers?

2008-01-31 Thread Roger Yen
Is there any way to get the value of properties between fragments and/or merger modules? I want to have a fragment (or merge module) that contains a component which writes to the registry by taking property values from the installation UI fragment file, I can't figure out how to do this. Is it eve

[WiX-users] Check a property has a slash on the end

2008-01-31 Thread Richard Wilde
Hi I have a property called [MAXIMIZERDIR] which the user has browsed to using a custom dialog. I want WIX to automatically append a backslash to the end of this property if it does not already have one. Can WIX do this?` Thanks Richard -

[WiX-users] Adding a custom action (type 6) in a patchpackage (msp)

2008-01-31 Thread Paul Chrzanowski
Hello, wix users, we are considering to switch from using InstallShield software to WiX. We want to add and use a new custom action (type 6) integrated in our new hotfix. Sadly, this is not possible with InstallShield's AdminStudio (QuickPatch). Now, we were investigating if WiX would co

Re: [WiX-users] pre-defined variables?

2008-01-31 Thread mark.modrall
Thanks, Justin. I just commented on the blog, but I'll say the same here: If I follow the add-reference instructions above, I get a dialog saying "Sorry, project references are not yet supported in Votive. If you want to add the code, by all means! :)" Votive 2.0.5325 If I right-click the proj

Re: [WiX-users] Condition runs incorrectly on Repair

2008-01-31 Thread RW
Thanks. Any idea why it would fail on a repair, even though the DLL is still there? -Original Message- From: Sebastian Brand [mailto:[EMAIL PROTECTED] Sent: Thursday, January 31, 2008 12:40 AM To: RW Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Condition runs incorrectly

[WiX-users] Weekly build missing WixComPlusExtension.dll in wix3-binaries.zip

2008-01-31 Thread Rob Livermore
Dear: Weekly build operator. The WIX 3.0 is turning into a very nice package. It has been meeting the needs for deployment. What happened to the WixComPlusExtension.dll and complus.xsd? The current release help file still documents support for the extension; but, the bits are mis

[WiX-users] Multilingual Support

2008-01-31 Thread JahMic
Yes, I know the short answer is 'no'. However, my powers-that-be know of a few installers that can make a single multilingual install package, (I think they are all non-msi based) and they have pointed out this is a high priority feature and if I can't do with wix or another msi-based solution, do

[WiX-users] Change text in Edit control from radio button selection

2008-01-31 Thread Tris Hodges
Is the above possible and if so can somebody suggest an approach to do so?Basically I have an Edit control that is disabled/enabled depending on which radio button is selected and I need it to default to the original text when disabled. The initial state of the edit control is disabled with defa

Re: [WiX-users] Size of feature

2008-01-31 Thread SaiTeja
Hi, My question is different. See in CustomSetup Dialog, you will find one message as "This feature requires 200MB on your hard drive" Now for silent install functionality i want this number(200MB) to compare the space. For example: My C drive has actual disk space 100MB and D drive has space

Re: [WiX-users] Size of feature

2008-01-31 Thread SaiTeja
Wilson, Phil wrote: > > Generally speaking you don't need to do this. If you want to ensure space > at some directory location you use the ReserveCost mechanism and let > Windows figure out if there's enough room. Windows already computes the > size of the feature for space checking, and Reser

Re: [WiX-users] unexpected SqlDatabase element

2008-01-31 Thread Johan Appelgren
On Jan 30, 2008 8:46 PM, Ted Yu <[EMAIL PROTECTED]> wrote: > > > When I use WIX 3.0.2512.0 to compile, I get error on this line: > >Guid='65721384-ACFB-11DC-8E65-758256D89593' DiskId='1' Location='either' > Permanent="yes"> > > > >

Re: [WiX-users] Convert installer to ClickOnce

2008-01-31 Thread Johan Appelgren
On Jan 30, 2008 6:41 PM, hina1703 <[EMAIL PROTECTED]> wrote: > > I have created a installer using Wix toolset. How can I convert it to > ClickOnce deployment? > > Thanks, > ClickOnce and Windows Installer are two different installer technologies. You can read a comparison between the two here