Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Ian Elliott (Excell Data Corporation)
You're welcome. Wix comes with a tool called heat.exe that can add files to components, I believe. -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com] Sent: Wednesday, December 31, 2008 3:21 PM To: General discussion for Windows Installer XML toolset. Subj

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
It was my mistake its actually TestSettings01.esf and others too. I was able to figure this out with the help of Orca. Thanks for your help. Now, In the New Year I will start implementing Wix to my complex Installer. Is there a easy way to add files to components? I have like at least 100-200

Re: [WiX-users] Problem with Transitive Components - Previously RE: WIX3 - Suggestions

2008-12-31 Thread Ryan Parlee
Ah.. I see now that the component had to be marked as transitive from the beginning, otherwise when the patch is removed it will no longer be transitive and therefore the condition will not be checked and no install will be performed (at least that's my logic to explain what's going on). When I mod

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Ian Elliott (Excell Data Corporation)
I would make sure that a RemoveFile table actually exists in your msi and that the data contained therein is accurate. (Use Orca to view.) Make sure the files you are trying to remove are actually in the directory you specified in the xml and not some other directory. -Original Message

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
I don't see RemoveFile been called to remove those TestSettings files. MSI (s) (B4:E8) [17:49:17:750]: Executing op: ActionStart(Name=RemoveFiles,Description=Removing files,Template=File: [1], Directory: [9]) Action 17:49:17: RemoveFiles. Removing files MSI (s) (B4:E8) [17:49:17:765]: Executing

[WiX-users] Problem with Transitive Components - Previously RE: WIX 3 - Suggestions

2008-12-31 Thread Ryan Parlee
*** Why you need to keep a zero length file around? *** 1. I did all of the MNP2000 sample projects from MSDN (yes, by hand) and was able to simply create a patch that marked the Dance component as transitive with condition 1=0 and it properly removed the Dance.txt File resource upon application

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Ian Elliott (Excell Data Corporation)
That's not really an error. It's just pulling test from the Error table which ultimately reads: Product Version: 1.0. Product Language: 1033. Reconfiguration success or error status: 0. Try searching the log file for RemoveFile and see what text shows up. Make sure the log is verbose. -Ori

Re: [WiX-users] Win2K8 Server installs

2008-12-31 Thread Phillip_Sidari
Here is the error from the log: MSI (s) (1C:40) [16:16:41:694]: Doing action: Mss.EncryptConnStrings Action start 16:16:41: Mss.EncryptConnStrings. MSI (s) (1C:40) [16:16:41:694]: Note: 1: 2753 2: Dell.InstallUtil.exe DEBUG: Error 2753: The File 'Dell.InstallUtil.exe' is not marked for installat

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
This is the error I get. MSI (c) (0C:14) [17:25:47:203]: Note: 1: 1728 MSI (c) (0C:14) [17:25:47:203]: Note: 1: 2205 2: 3: Error MSI (c) (0C:14) [17:25:47:203]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1728 MSI (c) (0C:14) [17:25:47:203]: Note: 1: 2205 2: 3: E

Re: [WiX-users] Win2K8 Server installs

2008-12-31 Thread Rob Mensching
What is the error from the verbose log file? -Original Message- From: phillip_sid...@dellteam.com [mailto:phillip_sid...@dellteam.com] Sent: Wednesday, December 31, 2008 14:30 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Win2K8 Server installs By using the IIS 6 metabase comp

[WiX-users] Win2K8 Server installs

2008-12-31 Thread Phillip_Sidari
By using the IIS 6 metabase compatibility mode on Win2K8 I have a website being installed properly. However, my custom actions that run a file that comes with the installation fail only on Win2K8 but run fine on XP and Win2K3. Any ideas? Is this a known WiX issue? Thanks. - Phil --

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
Thanks I got the sub folders working, now let me try the remove file. Thanks, Arun Perregattur -Original Message- From: Ian Elliott (Excell Data Corporation) [mailto:a-iae...@microsoft.com] Sent: Wednesday, December 31, 2008 5:10 PM To: General discussion for Windows Installer XML tools

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Ian Elliott (Excell Data Corporation)
If you want Tools to be underneath "TestApp 1.0" then do the following: Component goes here Component goes here You should examine a verbose log file to look for clues as to why the RemoveFiles doesn't work. -Or

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
Is this the way to create Sub Folders? I am unsure of how to create Sub Folders. Yes, File names

Re: [WiX-users] Registry Table Error

2008-12-31 Thread Rob Mensching
Inside the Component itself. All of those elements turn into registry keys. Somewhere duplicate registry keys are getting created. -Original Message- From: John McLean, Jr. [mailto:jmclea...@jmatech.com] Sent: Wednesday, December 31, 2008 13:00 To: General discussion for Windows Install

Re: [WiX-users] Wix Sub Folders Install

2008-12-31 Thread Ian Elliott (Excell Data Corporation)
I don't see a "Tools" subfolder under the "Test App 1.0" folder you created so nothing will be installed there. Not sure why the RemoveFiles doesn't work. Did you get the spelling correct on the file names? -Original Message- From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.c

[WiX-users] Wix Sub Folders Install

2008-12-31 Thread Arun Perregatturv
I just started working on Wix and trying out few things before I can start implementing. Our existing Installer(Installshield) has a nice UI but there are some limitations of how things are done. Everthing has to be on the Build PC and need to know all the files to compile and create a Installe

Re: [WiX-users] Registry Table Error

2008-12-31 Thread John McLean, Jr.
Rob, Thanks for the help and advice. I need a little help on where to start. Do I need to be looking at components above this component or do I need be looking inside the component itself. Any help would be appreciated. Regards, John E. McLean, Jr. Tel: 713-780-7262 Fax: 713-780-3010 http://

[WiX-users] EmbeddedUI failing to load

2008-12-31 Thread Andrew Crum
I'm using the latest build and I have simple Wix project through Votive. I'm using the sample DTF embedded UI project. I've had this working before, but now the MSI fails to load anything. The msiexec log starts with this: SFXCA: Extracting embedded UI to temporary directory: C:\Users\myusernam

Re: [WiX-users] Package/@Shortnames

2008-12-31 Thread Rob Mensching
Yes. That's what it means. Unless you want short names. -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: Wednesday, December 31, 2008 02:04 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Package/@Shortnames Thanks Rob, I

Re: [WiX-users] Registry Table Error

2008-12-31 Thread Rob Mensching
Nothing pops out at me. Somewhere something got confused. I think the fastest way to the root of this is to "binary search" the problem by commenting out blocks of code until you can narrow down which elements are causing the duplication. With that narrowed down, hopefully it'll be clearer wh

Re: [WiX-users] Detecting if a feature is marked for install

2008-12-31 Thread Alexander Shevchuk
Frank, I am guessing here, the reason "NOT &Firebird=0" does not get evaluated to TRUE is because 0 is not a valid value for a feature state (see http://msdn.microsoft.com/en-us/library/aa368012(VS.85).aspx). This description from Condition table (http://msdn.microsoft.com/en-us/library/aa3680

Re: [WiX-users] Detecting if a feature is marked for install

2008-12-31 Thread Frank Cohen
Alex, Thanks for your reply. This did the trick@ I don't completely understand how it works, because shouldn't "NOT &Firebird=0" and "&Firebird=3 OR &Firebird=4" both evaluate to true if they're selected? You make a good point regarding the update and I've removed the "Installed" test. Frank

Re: [WiX-users] small contribution - ASP.NET 2.0/3.5 installs

2008-12-31 Thread Peter Oehlert
I'm actually setting something like this up right now so thank you very much, it's very helpful to have this all laid out already. I would point out that this code doesn't work in x64 (since the isapi you want is in Framework64 directory). Also, is there a repository of samples that do particular

Re: [WiX-users] Detecting if a feature is marked for install

2008-12-31 Thread Alexander Shevchuk
You are mixing to things in your condition: - Property Installed is telling us if product is installed or not - &Feature is telling us to what state feature is changing from its current state This important to understand because user may select a feature to be installed during fresh install of t

Re: [WiX-users] WindowsInstaller.View.Modify() fails on Vista / Server 2008

2008-12-31 Thread Jason Ginchereau
The most common reasons for a table insert to throw a "function failed" error are because there's already a record in the table with the same primary key, or because a required (non-nullable) field is missing/null in the inserted record. I would not expect those cases to behave differently with

[WiX-users] small contribution - ASP.NET 2.0/3.5 installs

2008-12-31 Thread Phillip_Sidari
I took Neil's suggestion and reviewed this link: http://www.nabble.com/Re:-Failed-to-read-IISWebSite-table.-(-2147024774- )-p15487354.html. There we are couple misspellings and one fatfinger. I wanted a vdir that included anonymous access, script only security, default app pool, default document

[WiX-users] Detecting if a feature is marked for install

2008-12-31 Thread Frank Cohen
The name of my feature is called "Firebird". I want the action to run if the component has been selected and not installed. Here is what I have: This is what I get: DEBUG: Error 2753: The File 'Firebird_Installer' is not marked for installation. What is the syntax I am supposed to be usin

Re: [WiX-users] Registry Table Error

2008-12-31 Thread John McLean, Jr.
Rob, How do I correct the duplicate registry problem. Here is the code snippet that causing the error.

[WiX-users] (no subject)

2008-12-31 Thread Ryan Parlee
79f6ce50fbf17...@na-exmsg-c102.redmond.corp.microsoft.com> In-Reply-To: Subject: RE: [WiX-users] WIX 3 - Suggestions Date: Wed, 31 Dec 2008 07:18:00 -0600 Message-ID: <000601c96b4a$34d0f070$9e72d1...@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Con

Re: [WiX-users] Autogenerated component GUID for Components which don't have a KeyPath child.

2008-12-31 Thread Ali-Akber Saifee
> > Hey Rob, What I meant was - the component contains only one fiel - that *isn't* a KeyPath - since it uses a CompanionFile. Therefore, I was suggesting that autogenerated guids be allowed for such cases since the uniqueness is still intact as long as the companionFile follows the rules

[WiX-users] State of Feature on ReInstallation.

2008-12-31 Thread Jagdish Sakhiya
Can anybody tell me what would be state of Feature if it is already installed in system and user unselect it in "Change" mode. Regards, Jagdish Sakhiya "Legal Disclaimer: This electronic message and all contents contain information from Cybage Software Private Limited which may be privilege

Re: [WiX-users] Package/@Shortnames

2008-12-31 Thread Neil Sleightholm
Thanks Rob, I not sure I am any wiser even after reading the MSI SDK! I am assuming it just means that the MSI uses long file names and can be safely ignored as the default is "Long file names". Neil -Original Message- From: Rob Mensching [mailto:rob.mensch...@microsoft.com] Sent: 31 Dec

Re: [WiX-users] Package/@Shortnames

2008-12-31 Thread Rob Mensching
>From MSI SDK: Word Count Summary Property In the summary information of an installation package, the Word Count Summary property indicates the type of source file image. If this property is not present, it defaults to zero (0). Note that this property is stored in place of the standard Count P

[WiX-users] Package/@Shortnames

2008-12-31 Thread Neil Sleightholm
Could someone let me know what the Package/@Shortnames attribute does or how it maps to an MSI property. The documentation says "Set to 'yes' to have short filenames in the source" but that doesn't really mean anything to me. Thanks Neil Neil Sleightholm X2 Systems Limited n...@x2system

Re: [WiX-users] A few questions

2008-12-31 Thread Neil Sleightholm
Take a look here: http://www.nabble.com/Re:-Failed-to-read-IISWebSite-table.-(-2147024774- -)-p15487354.html. I think the bits you need are the and all the bits (this assumes you are using WiX v3). Neil -Original Message- From: phillip_sid...@dellteam.com [mailto:phillip_sid...@delltea

Re: [WiX-users] Deploying Sql Server Reports from WIX Installer

2008-12-31 Thread Neil Sleightholm
I don't have a WiX solution to this but there is some information here: http://neilsleightholm.blogspot.com/2008/08/report-loader-for-sql-server -reporting.html. I wrote this because I don't believe the "rs" utility does everything you need to do. Neil -Original Message- From: Ajay Bhanda