Re: [WiX-users] WiX 3.0.4805.0: Internal MSBuild Errors

2009-01-24 Thread John H. Bergman (XPedient Technologies)
I am more than happy to assist, so if there is other help you need, please let me know, including getting the source and attaching to catch it in the act... -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Saturday, January 24, 2009 7:34 PM To: General discussion for

Re: [WiX-users] Building WiX project using MSBuild on Windows 2003 x64 server

2009-01-24 Thread Bob Arnson
Dmitry Ponomarenko wrote: > I am not sure how I can specify this property in the project file - there is > no such option over UI. > > Could you please provide me with an example for the project file with > setting the property? > You'll have to do it in a text editor since it's not exposed in

Re: [WiX-users] How to install Visual Studio help collection file?

2009-01-24 Thread Bob Arnson
Aliaksandr Radzivanovich wrote: > I am in the process of creating a Visual Studio package. Wix works > really well for making installer for it. > However, I am unable to figure out how to install help collection from > a *.HxS file. > Could you please point me to a complete example of a WiX source

Re: [WiX-users] WiX 3.0.4805.0: Internal MSBuild Errors

2009-01-24 Thread Bob Arnson
John H. Bergman (XPedient Technologies) wrote: > After I reproduced it in Visual Studio 2008, I exited and ran msbuild as > suggested. > > The command line msbuild builds correctly. > > I opened Visual Studio again, and it still does not build. > OK, thanks. That narrows it down to the project

Re: [WiX-users] Configuration update problem during install...

2009-01-24 Thread Bob Arnson
John H. Bergman (XPedient Technologies) wrote: >File="[WPFClient]app.config" > > ElementPath="/configuration/PluginSources/add/@key='Client'" > Value="[xpt_ClientPlugins]"/> > > To change th

Re: [WiX-users] How to localize with Votive

2009-01-24 Thread Bob Arnson
Christopher Karper wrote: > I'm just starting the localization stuff, so I'll take whatever > reccomendation you have. Is the MUI pack stuff supported by WiX in any > way, or do I just need to go google up info on that as a seperate tech? > No special support but it's just another package tha

Re: [WiX-users] How do I make a edit control selected by default

2009-01-24 Thread Bob Arnson
Peter Oehlert wrote: > I'd like to make my single edit control on a dialog selected by default so > if the user starts typing when they hit the dialog it will replace the > current edit control value with whatever they type. Is this possible with > Wix/MSI? > Set the control's Default attribute

[WiX-users] Configuration update problem during install...

2009-01-24 Thread John H. Bergman (XPedient Technologies)
I am getting this error: Failed to find node: /configuration/PluginSources/add/@key='Client' in XML File: C:\Program Files\XPedient\WPFClient\\app.config System error: -2147467259 The error implies some sort of access issue with the file, am I miss

Re: [WiX-users] Install variable not kept around for uninstall?

2009-01-24 Thread Neil Sleightholm
If you need properties at uninstall time you need to persist them somewhere and read them on uninstall, the registry is a common location for these. Neil -Original Message- From: Peter Oehlert [mailto:poehl...@securityinnovation.com] Sent: 24 January 2009 19:58 To: 'General discussion fo

[WiX-users] Install variable not kept around for uninstall?

2009-01-24 Thread Peter Oehlert
So my scenario is that I query the user at install time what the database server, instance, and name should be. I then use these variables in a element to install a database. This works great, except that if I change any of the default values at uninstall it seems to go back to using the defa

[WiX-users] How do I make a edit control selected by default

2009-01-24 Thread Peter Oehlert
I'd like to make my single edit control on a dialog selected by default so if the user starts typing when they hit the dialog it will replace the current edit control value with whatever they type. Is this possible with Wix/MSI? Any help would be appreciated. Thanks, Peter

Re: [WiX-users] Creating Per-User Registry Entries in a Per-Machine Installation

2009-01-24 Thread Chuck
Neil Sleightholm wrote: > ...I would suggest that the right place to do this is in > your application on first run not in the installation. Rob Mensching wrote: > IMHO, the best way to handle this is to put the "default" > settings in the code or, if you must, put them in HKLM. Then your > applic

Re: [WiX-users] condition for uninstall

2009-01-24 Thread Richard
What does the log say about the launchconditions action? Use machine policy to enable logging for actions taken with add/remove programs. -- "The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download Legal

Re: [WiX-users] Creating Per-User Registry Entries in a Per-Machine Installation

2009-01-24 Thread Rob Mensching
It isn't. IMHO, the best way to handle this is to put the "default" settings in the code or, if you must, put them in HKLM. Then your application reads from HKCU and if it doesn't find the setting there it falls back to where the default location is. That way you only write the settings that

Re: [WiX-users] Creating SQL Database with WiX v3

2009-01-24 Thread Rob Mensching
The CustomAction code processing SQL Scripts could be improved quite a bit. It's incrementally grown over time and I think needs a rewrite to take into account all of the cases (which weren't known when it was originally written) and do it quickly. Unfortunately, it's too late in the WiX v3 ti

Re: [WiX-users] LGHT001 error from Light I can't seem to get rid of

2009-01-24 Thread Rob Mensching
What vesion of the WiX toolset are you using? -Original Message- From: John Cooper (Volt) [mailto:a-jc...@microsoft.com] Sent: Friday, January 23, 2009 15:31 To: wix-users@lists.sourceforge.net Subject: [WiX-users] LGHT001 error from Light I can't seem to get rid of I can't seem to get ri

Re: [WiX-users] Creating Per-User Registry Entries in a Per-Machine Installation

2009-01-24 Thread george_r
Chuck, try: 1 and set the initial registry values to HKCU. That did the trick for me. -- View this message in context: http://n2.nabble.com/Creating-Per-User-Registry-Entries-in-a-Per-Machine-Installation-tp2206842p2209180.html Sent from the wix-users mailing list archive at Nabble.com. --

[WiX-users] condition for uninstall

2009-01-24 Thread george_r
I need to check some conditions before I let my project be uninstalled. (It's a framework that may be used by one or several other projects that are installed seperately). My WIX-Project is adopted from MONDO. So I thought it might be a good idea to have a condition that checks - the "Installed"

Re: [WiX-users] Creating Per-User Registry Entries in a Per-Machine Installation

2009-01-24 Thread Neil Sleightholm
I don't think this is possible, I would suggest that the right place to do this is in your application on first run not in the installation. Neil -Original Message- From: Chuck [mailto:electroch...@att.net] Sent: 24 January 2009 00:09 To: wix-users@lists.sourceforge.net Subject: [WiX-us

Re: [WiX-users] Creating SQL Database with WiX v3

2009-01-24 Thread Eitan Behar
Hi, I had the same problem, my batch is made of a few scripts 60k lines long each, and I moved to invoking sqlcmd.exe from a CA directly, instead of Wix's SqlScript. See Neil's blog for full details: http://neilsleightholm.blogspot.com/2008/08/executing-sqlcmd-from-wix.html This reduced executio