[WiX-users] Wrapping Edit Boxes

2006-06-12 Thread Owen Evans
Hi All, Not sure if this is possible with MSI, but basically I want to be able to have an edit box that automatically word wraps. I’ve tried multi-line but that doesn’t do the job. Is there anyway of achieving this. Basically I want a user to be able to paste in a big block of Cipher Text

[WiX-users] Upgrade problem - unresolved reference

2006-06-12 Thread Petr Reichl
Hello all, I have problem with upgrade in my installation program script. I added Upgrade section: Now with this section light.exe fails. Error message is: error LGHT0094: Unresolved reference to symbol 'Actions:InstallExecuteSequence/RemoveExistingProducts' in section 'Product:BB3C8C3

Re: [WiX-users] Upgrade problem - unresolved reference

2006-06-12 Thread Petr Reichl
Sorry, I'm stupid. I pass over reference to this action missing :-( > Hello all, > > I have problem with upgrade in my installation program script. I added > Upgrade section: > > > > IncludeMaximum="no" Property="OLDERVERSIONDETECTED" /> > > > Now with this section light.exe fails

[WiX-users] Registering help files and deploying them to the help collection

2006-06-12 Thread Kalappa Pattar
Title: Message Hi All,     I want to register help files which are genereated using Helpstudio Lite. And I want help files to be deployed to help collection.   Can anyone suggest me how to go about this?   Best Regards, Kalappa Pattar "In rivers, the water you touch is th

[WiX-users] Extract files from msi (Msiexec, not WIX issue....)

2006-06-12 Thread Simon Topley
Title: Extract files from msi (Msiexec, not WIX issue)   Hello all, I know this isn't really a WIX problem, however it must be an issue others have seen. "Msiexec /a" is used to create an administrative installer (i.e uncompressed into folders). This little gem works pretty well for the

Re: [WiX-users] Extract files from msi (Msiexec, not WIX issue... .)

2006-06-12 Thread Simon Topley
Component is there when opened in orca yes, as is the feature that includes it.. From: Vagmi Mudumbai [mailto:[EMAIL PROTECTED] Sent: 12 June 2006 14:01To: Simon TopleySubject: Re: [WiX-users] Extract files from msi (Msiexec, not WIX issue) Hi Simon,   Are you sure that the fragment i

Re: [WiX-users] Extract files from msi (Msiexec, not WIX issue... .)

2006-06-12 Thread Vagmi Mudumbai
Hi Simon,   Can you create a verbose log and mail it across to me? You can create one with the following command line.   msiexec /a /l*v c:\mylog.log   Regards, Vagmi  On 6/12/06, Simon Topley <[EMAIL PROTECTED]> wrote: Component is there when opened in orca yes, as is the feature that includes

Re: [WiX-users] Why doesn't Windows Installer remove the old version in an upgrade?

2006-06-12 Thread Phil Wilson
Have you looked the log entries for FindRelatedProducts? They should say something about whether it found the previous version. Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Sunday, June 11, 2006 8:19 PM To: dangle123 ... C

[WiX-users] Including INSTALLDIR in Property

2006-06-12 Thread Hecker, Thomas
Hi,   I tried to define a property using embedding the INSTALLDIR property beeing not successfull.        Property(S): INSTALLDIR = C:\Program Files\My\Product\Property(S): ANTEXE = [INSTALLDIR]tools\bin\tool.exe     I want that ANTEXE links to "C:\Program Files\My\Product\tool

Re: [WiX-users] Including INSTALLDIR in Property

2006-06-12 Thread Stefan Pavlik
\My\Product\tools\bin\tool.exe" > > How do I achieve this? > > Thank you! > Thomas > > > __ NOD32 1.1593 (20060612) Information __ > > This message was checked by NOD32 antivirus system. > http://www.eset.com > > > > > -

Re: [WiX-users] Including INSTALLDIR in Property

2006-06-12 Thread Rob Hamflett
Unfortunately properties inside properties don't get resolved. You need a custom action to set ANTEXE to [INSTALLDIR]tools\bin\tool.exe, and it will get resolved properly then. Rob Hecker, Thomas wrote: > Hi, > > I tried to define a property using embedding the INSTALLDIR property > beeing

Re: [WiX-users] Extract files from msi (Msiexec, not WIX issue... .)

2006-06-12 Thread Christopher Painter
This open source project MSI2XML does a pretty good job of exporting an MSI database to XML and extracting all of the streams to a subfolder.  Once you've done this you can see the CABs that are stored in the MSI and extract your files from them.  On 6/12/06, Simon Topley <[EMAIL PROTE

Re: [WiX-users] Why doesn't Windows Installer remove the oldversion in an upgrade?

2006-06-12 Thread Tony.Bjerstedt
I second looking in the log for the FindRelatedProducts action. I had a similar problem recently and it came down to the ALLUSERS property not being set correctly prior to the call to FindRelatedProducts. The search found the previous per-machine install but didn't do anything with it because it w

Re: [WiX-users] Extract files from msi (Msiexec, not WIX issue... .)

2006-06-12 Thread Simon Topley
Thanks Christopher,   It seems to be having some issues installing at the moment, but I'll give it another try tomorrow on another system (way to hot to do anything else today) From: Christopher Painter [mailto:[EMAIL PROTECTED] Sent: 12 June 2006 14:54To: Simon TopleyCc: wix-users@lists.s

[WiX-users] Registry key or value localization problem

2006-06-12 Thread Watkins, Jon
I'm having some problems with WiX jumbling some of my translated strings (some non English characters) that go into my registry key names and values.  Please let me know if anyone else has seen this before and if there's a fix known.  If I manually edit the MSI after the build to correct th

[WiX-users] wixui_installdir

2006-06-12 Thread Simon Burgess
I’m using the latest stable v2 build   I am trying to use the WixUI_InstallDir by including:     However when I run the msi, the install dir dialogue has no default value set and when I try to browse with the button

Re: [WiX-users] Registry key or value localization problem

2006-06-12 Thread Derek Cicerone
What codepage are you setting for the package?  Please show the exact authoring being used because there are two codepages in an msi package - one for the summary information and one for the package itself.  We need to ensure the proper one is being set.   Derek From: [EMAIL PROTECTED] [ma

Re: [WiX-users] wixui_installdir

2006-06-12 Thread Neil Sleightholm
I think you need to set the property WIXUI_INSTALLDIR to get this to work. If you search the help file for "WIXUI_INSTALLDIR" you should find a sample.   Neil From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon BurgessSent: 12 June 2006 20:53To: wix-users@lis

Re: [WiX-users] wixui_installdir

2006-06-12 Thread Bob Arnson
Neil Sleightholm wrote: I think you need to set the property WIXUI_INSTALLDIR to get this to work. If you search the help file for "WIXUI_INSTALLDIR" you should find a sample. And the next release has a change that gives an error if you don't set WIXUI_INSTALLDIR. __

Re: [WiX-users] Registering help files and deploying them to the help collection

2006-06-12 Thread Bob Arnson
Title: Message Kalappa Pattar wrote:     I want to register help files which are genereated using Helpstudio Lite. And I want help files to be deployed to help collection. Are you talking about Help 2.0 .HxS files? If so, currently WiX has no spec

Re: [WiX-users] wixui_installdir

2006-06-12 Thread Derek Cicerone
I'm curious - is there any particular reason to have a special property other than TARGETDIR for the install location?   Derek From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob ArnsonSent: Monday, June 12, 2006 2:37 PMTo: Neil SleightholmCc: wix-users@lists.sourceforge.ne

Re: [WiX-users] Wrapping Edit Boxes

2006-06-12 Thread Bob Arnson
Owen Evans wrote: Not sure if this is possible with MSI, but basically I want to be able to have an edit box that automatically word wraps. I’ve tried multi-line but that doesn’t do the job. Is there anyway of achieving this. Basically, the control styles that MSI

Re: [WiX-users] wixui_installdir

2006-06-12 Thread Bob Arnson
Derek Cicerone wrote: I'm curious - is there any particular reason to have a special property other than TARGETDIR for the install location? No great reason...that I can think of today, that is...I'm sure it had something to do with support "split" installs to different directories

Re: [WiX-users] Registering help files and deploying them to the help collection

2006-06-12 Thread Derek Cicerone
Title: Message We have a help extension that's been under development internally - the plan is to incorporate this into the VS extension and release it.  You'll still need the help merge modules, but it should make this a lot easier to deploy.   Derek From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [WiX-users] Uninstall - questions

2006-06-12 Thread Peter G. Sakhno
Thanks again! I have some more questions... Does MSI increments the file's reference count if I install DLL, EXE and any other files into [*:\Program files\My Product\System] directory not? How to get rid of previous "broken" installations? Best regards, Peter G. Sakhno C-MAP RUSSIA Ltd http:/