[WiX-users] upgrade and 3 field version numbers

2007-11-06 Thread Nitin
Hi, I ran in some issue with upgrades, and when I checked the logs, I found that the version numbers were 4 fields ( 1.0.0.1 ). MSDN tells me that it will ignore the 4th part, so I have changed my version to 1.0.1, which works. The problem is I show my product version (in about box) based o

Re: [WiX-users] Subclassing WIX dialogs

2007-11-06 Thread Bob Arnson
Lewis G. Pringle, Jr. wrote: Are there any plans (maybe in Wix v3?) to include an ability to do some sort of limited 'dialog subclassing'? where perhaps you could just add a control? It's not supported now; it might be possible, similar to how WiX v3 implements "floating" Publ

Re: [WiX-users] Upgrading

2007-11-06 Thread Bob Arnson
Craig0ss wrote: > What about a component search, if it finds the product it fills the > keypath?? > Should work. I've never tried it. -- sig://boB http://joyofsetup.com/ - This SF.net email is sponsored by: Splunk Inc.

Re: [WiX-users] Chaining a redist package into an MSI

2007-11-06 Thread Bob Arnson
Karesz Kecskemeti wrote: My issue is that I try to build an MSI, and it has a third party redist package inside it. This redist package has to be installed as part of my MSI installation. I believe this can be done by creating a custom action to execute this package. The problem is that this

Re: [WiX-users] Custom actions as executables

2007-11-06 Thread Bob Arnson
Dror Cohen wrote: I want my MSI to run in a custom action an executable that I want to add into the package but not stay on the user's machine. This executable might also be dependent on files (DLLs) that will be installed on the machine. What is the easiest way to achieve that? MSI doesn

Re: [WiX-users] Advertised feature install starting

2007-11-06 Thread Bob Arnson
John Hall wrote: It's an HKCU registry key that would have been created for the user who installed the application, but obviously not the user who is running. Is this the default behaviour for a key in HKCU even if the feature is not advertised? Yes, for an advertised shortcut. Also, is th

[WiX-users] File Reference Syntax

2007-11-06 Thread Cryptonomicon
Once again I am struggling badly with wix. I have a file that I want to use as the target of a verb What is wrong with my use of File_ClientExe? Error 25 Unresolved reference to symbol 'File:[#File_ClientExe]' in section 'Fragment:

Re: [WiX-users] install integrated MSHelp2 with WixVSExtensions.dll

2007-11-06 Thread Shannon Lewis
Steve Not sure if you're still working on this, but I've recently been struggling with the same issues in WiX v3, and have finally got the help integration working. On the LGHT0204 errors (sequencing errors), I had to do the following

Re: [WiX-users] Chaining a redist package into an MSI

2007-11-06 Thread Peter Wone
If you run it then it will probably unpack into a folder with a GUID for a name. If you keep Windows Explorer open on C:\ you will see the new folder appear as a child of the root. Generally these folders are removed again when the setup exits cleanly so the key is to terminate with extreme prejudi

[WiX-users] Chaining a redist package into an MSI

2007-11-06 Thread Karesz Kecskemeti
Hello, My issue is that I try to build an MSI, and it has a third party redist package inside it. This redist package has to be installed as part of my MSI installation. I believe this can be done by creating a custom action to execute this package. The problem is that this redist package is

Re: [WiX-users] Building a patch in Visual Studio

2007-11-06 Thread Peter Marcu
Not possible using the Setup Deployment project. You can however build patches out of the MSI's it produces using wix v3's admin image patching features. Generate an admin image of your baseline and upgrade msi's. Call torch with -ax and the msi's in the admin layouts. Then follow the wix patch

Re: [WiX-users] Uninstalling WinSxS in Vista

2007-11-06 Thread Geoff Finger
On Nov 5, 2007 9:33 PM, Bob Arnson <[EMAIL PROTECTED]> wrote: > Geoff Finger wrote: > > I've run into an issue with Vista where the side by side assemblies > > installed to WinSxS do not get removed when the uninstaller is run. > > > > Known issue and I'm not aware of a workaround. And yes it sucks

[WiX-users] Building a patch in Visual Studio

2007-11-06 Thread Schuett, Michael
Is it possible to build a patch inside VS2005? All I've been able to generate is a useless MSI. Thanks, Mike - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Sear

[WiX-users] Installshield Update Service

2007-11-06 Thread Paul McCloskey
Has anyone successfully integrated the Installshield Update Service in a WIX project? Are there any other 3rd party application update tools that any of you use with WIX? Thanks, Paul - This SF.net email is sponsored by: S

[WiX-users] Subclassing WIX dialogs

2007-11-06 Thread Lewis G. Pringle, Jr.
Folks: It appears the standard methodology for making changes in dialogs is to copy the dialog into your own .wxs file, and anything that referred to it (like a UI sequence) also has to be copied and modified. Are there any plans (maybe in Wix v3?) to include an ability

Re: [WiX-users] Custom actions per component?

2007-11-06 Thread Richard
In article <[EMAIL PROTECTED]>, Dror Cohen <[EMAIL PROTECTED]> writes: > I wanted to know if it is possible to make a custom action run only if a ce= > rtain component is installed and how to do it. Use a condition that is true when the component is set to be installed.

Re: [WiX-users] Custom actions as executables

2007-11-06 Thread Richard
In article <[EMAIL PROTECTED]>, Dror Cohen <[EMAIL PROTECTED]> writes: > I want my MSI to run in a custom action an executable that I want to add in= > to the package but not stay on the user's machine. This executable might al= > so be dependent on files (DLLs) that will be installed on the

[WiX-users] Just found SetupBld

2007-11-06 Thread conkerjoe
I have been having issues with getting a bootstrapper working for some time now. i just recently found the program setupbld, and it looks like it might solve my problems. Here is what i aim to achieve the user runs setup.exe. it would detect and prerequisits and install them, then launch the msi b

[WiX-users] Custom actions per component?

2007-11-06 Thread Dror Cohen
Hi, I wanted to know if it is possible to make a custom action run only if a certain component is installed and how to do it. Also, is there a way to put custom actions in a fragment? Thanks, Dror. - This SF.net email is spo

Re: [WiX-users] Upgrading

2007-11-06 Thread Craig0ss
hmmm What about a component search, if it finds the product it fills the keypath?? Ive read this but am unsure on how to execute this my self thanks Bob Arnson-6 wrote: > > Craig0ss wrote: >> I need my MSI to check for an existing install of the software ie. 5.2.1, >> now it does this fine

[WiX-users] Custom actions as executables

2007-11-06 Thread Dror Cohen
Hi, I want my MSI to run in a custom action an executable that I want to add into the package but not stay on the user's machine. This executable might also be dependent on files (DLLs) that will be installed on the machine. What is the easiest way to achieve that? Thanks, Dror. --

Re: [WiX-users] Advertised feature install starting

2007-11-06 Thread John Hall
I've got some machines that after a minor upgrade, unprivileged users unexpectedly get MSI launching a dialog saying that "the feature you are trying to use is on a network resource that is unavailable". Administrators do not see the message. The installer was run as Administrator.