[WiX-users] Tallow Issues

2007-03-21 Thread Ian Couper
I wrote about this a few days ago, but didn't seem to get an answer. It's becoming a major issue with this project, so I'm hoping SOMEONE will be able to address it. Simply: Tallow doesn't seem to recognize any characters in filenames that are "unusual". This includes an accented E's or A's in

[WiX-users] Tallow and French

2007-03-19 Thread Ian Couper
I'm having issues running tallow when files it is mapping have French characters in the path name. Several PDF files have accented A's and E's, which show up file in command line, but are simply gone in the tallow output file. Here are the file names: Tallow: '8 TOUS LES UTI

[WiX-users] German Messages

2007-03-15 Thread Ian Couper
I've built some MSIs and they seem to all have certain messages that always appear in German. I have used the English localization file, and almost all the text in the installer is English, but some messages are still German. This is not usually an issue, since these messages are normally only on s

[WiX-users] MSI log files

2007-03-08 Thread Ian Couper
I'm looking for a way to have the MSI output a log file no matter what. I know the log file can be created using a command line switch, but is there a way to configure this inside the MSI? Thanks - Take Surveys. Earn Cash.

[WiX-users] Variables in Filenames

2007-02-20 Thread Ian Couper
I am trying to get a property in a filename, but it always registers the filename as invalid when I try to build. I'm sure I'm doing it wrong and I can't seem to find the answer anywhere. This is the code I'm using: How exactly can I accomplish this? Thanks. --

[WiX-users] Checking for Passive mode

2007-02-16 Thread Ian Couper
I have a situation where the user might want to run an MSI I've created in passive mode, but my Custom Action needs to change if that is the case. Is there a way of having the MSI check whether it is being run in passive mode or not? Otherwise I'm going to have to get the user to include a prop

[WiX-users] Specifying Backup location

2007-02-12 Thread Ian Couper
I know the WiX installer automatically performs a backup of all files that it overwrites so that a rollback can be performed in case of an error. Is there anyway to specify where those files are stored and is it possible to have them kept after the installer has completed? Thanks -

Re: [WiX-users] Install Sequence

2007-02-05 Thread Ian Couper
No it's an executable. I've tried c++ and VB scripts but they won't work properly for what I need. From: Dana Gutride [mailto:[EMAIL PROTECTED] Sent: Monday, February 05, 2007 3:43 PM To: Ian Couper; wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Install Sequence

2007-02-05 Thread Ian Couper
The custom action is actually running a custom build C# application... From: Dana Gutride [mailto:[EMAIL PROTECTED] Sent: Monday, February 05, 2007 2:33 PM To: Ian Couper; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Install Sequence If it

Re: [WiX-users] Install Sequence

2007-02-05 Thread Ian Couper
e and then return an error triggering rollback if it finds it. Wouldn't it be easier to just have the first custom action exit with a failure (triggering the rollback) after it performs the actions that would create the file? Dana On 2/5/07, Ian Couper <[EMAIL PROTECTED]> wrote: > &g

[WiX-users] Install Sequence

2007-02-05 Thread Ian Couper
Someone else posted something along these lines a few days ago but didn't get any response, so I thought I'd post again... I've got a script that I trigger to run during my install and I'd like to have the MSI check if there was a file created by that script. If the file exists I'd like it to t

Re: [WiX-users] Triggering a rollback

2007-01-30 Thread Ian Couper
llows: FILEEXISTS From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 3:43 PM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Triggering a rollback Launch Conditions have to be true in order for the in

Re: [WiX-users] Triggering a rollback

2007-01-29 Thread Ian Couper
y, January 29, 2007 3:31 PM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Triggering a rollback If this file needs to exist before the installation is ran, you could have something like: And if the FileSearch succeeds, FILEEXISTS would be set to true. Then

[WiX-users] Triggering a rollback

2007-01-29 Thread Ian Couper
I would like to use the FileSearch property to trigger a rollback if a particular file is not located. I know how to use the FileSearch property, but not hot to force a rollback based on its outcome. Can anyone help me with this one, or point me in the right direction? Thanks -

Re: [WiX-users] SQL Script limit?

2007-01-24 Thread Ian Couper
n, so there is either something wrong with how I am handling it, or WiX can't handle the size of script I am trying to run. From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 11:55 AM To: Ian Couper; wix-users@lists.sourceforge.net S

Re: [WiX-users] Custom UI Problems...

2007-01-24 Thread Ian Couper
From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 10:49 PM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Custom UI Problems... Ian Couper wrote: I have created a custom UI dialog to allow the user to enter database/user/password so users

[WiX-users] Custom UI Problems...

2007-01-23 Thread Ian Couper
I have created a custom UI dialog to allow the user to enter database/user/password so users can run build in SQL scripts to a database they specify, and I believe I've created the dialog properly (used WixEdit for a lot of it) and created the new wixlib for my UI with no issues, but when I go to c

[WiX-users] SQL Script limit?

2007-01-23 Thread Ian Couper
I have a large SQL script (30 to 50MBs) that I am trying to run from the MSI using SQLScript. I have been able to run smaller scripts easily, but this large one is not running at all and the MSI hangs. Is this a known issue with Wix 2.0? Is there a way to overcome this issue? Thanks. -

Re: [WiX-users] error CNDL0079

2007-01-22 Thread Ian Couper
e the SqlDatabase tag and have them reference each other? From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Monday, January 22, 2007 11:03 AM To: Ian Couper; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] error CNDL0079 Did you put the SqlScript el

[WiX-users] error CNDL0079

2007-01-22 Thread Ian Couper
I'm getting the following error when trying to use the SqlScript tag... "SampleWixUI.wxs(42) : error CNDL0079 : The SqlScript element cannot be specified unless the element has a component as an ancestor. A SqlScript that does not have a component ancestor is not installed." Does anybody kn

Re: [WiX-users] Have another one...

2007-01-19 Thread Ian Couper
ke my life harder. I simply added the property and it seems to solve the problem. From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 10:25 AM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Have anothe

[WiX-users] Have another one...

2007-01-19 Thread Ian Couper
Now that I've got the MSI set to not create an ARP entry, any ideas on how to make sure no registry entries are created on install? Thanks again, Ian. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.

Re: [WiX-users] Have another one...

2007-01-19 Thread Ian Couper
Just a follow up to that... it didn't work, seemed to, but after a closer look it didn't. From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 10:25 AM To: Ian Couper Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-u

Re: [WiX-users] MSIs without Add/Remove entry, Possible?

2007-01-19 Thread Ian Couper
K, Thanks. From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 9:45 AM To: Ian Couper Subject: Re: [WiX-users] MSIs without Add/Remove entry, Possible? Btw, don't forget to add a CC to the wix-users email address too so eve

[WiX-users] MSIs without Add/Remove entry, Possible?

2007-01-19 Thread Ian Couper
Just wondering if there is an easy way to create an MSI that will not add an entry into Add/Remove Programs. Currently I have all the components listed as "Permanent" then I can run an uninstall after the MSI runs, which will keep all the files/directories, but will remove the registry entry and th