Re: [WiX-users] need help ! Error on Windows7

2010-06-15 Thread Blair
The short answer is: Bootstrapper. You need one. UAC is probably the reason your getting a failure in Win7. -Original Message- From: Panop S. [mailto:aun.pa...@gmail.com] Sent: Tuesday, June 15, 2010 8:28 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] need help ! Error on Wi

Re: [WiX-users] Detecting MSI dependencies

2010-06-15 Thread Blair
Those registry keys are undocumented, and relying on them will break you. If you need to use UpgradeCodes, you really will need a custom action. -Original Message- From: Neil Sleightholm [mailto:n...@x2systems.com] Sent: Tuesday, June 15, 2010 10:22 PM To: General discussion for Windows I

Re: [WiX-users] Detecting MSI dependencies

2010-06-15 Thread Neil Sleightholm
Thanks Blair that is useful to know (I can see it in the uninstall log now I look closely). Mandar, I think the other place to look is the key "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\UpgradeCodes" but you need to convert your UpgradeCode to a compressed GUID. Neil -Original Message---

[WiX-users] need help ! Error on Windows7

2010-06-15 Thread Panop S.
Hi, I would like to include 3 party program into my installer as below (wix 3.0). I am very confusing this work fine on Windows XP but when I execute 3rd Party Program through installer on Windows 7 it said "ShellExecuteEx Fail; code 1155." Do have any suggestion

Re: [WiX-users] installlocation

2010-06-15 Thread Blair
I'm assuming you are not trying to change your install directories in your maintenance transaction. Already installed components should be correctly repairing in the location they were previously installed into. Components that were not previously installed as well as custom actions that use direc

Re: [WiX-users] Detecting MSI dependencies

2010-06-15 Thread Blair
FindRelatedProdcuts returns without doing any work (a verbose log tells you it is because it is a "maintenance installation"). I wrote a custom action one time that parsed the Upgrade table and set properties (at the time I called it FindRelatedProductsMinor). It might be a good candidate to throw

Re: [WiX-users] "Modify Ini File in a merge module" or "How to use DirectorySearch to look for a directory inside the package"

2010-06-15 Thread Blair
Look in a verbose log. It is possible that INIPATH has the merge module's GUID appended to it in its name. -Original Message- From: Jonas Kahlert [mailto:jonas.kahl...@docufy.de] Sent: Tuesday, June 15, 2010 4:58 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] "Modify Ini Fil

[WiX-users] "Modify Ini File in a merge module" or "How to use DirectorySearch to look for a directory inside the package"

2010-06-15 Thread Jonas Kahlert
Hi there, I have the following setting: 1 merge module, 1 product The merge module contains an ini file which has to be updated based on user Input form a custom dialog. So we have the following situation: There is a property named CMSHOST which contains the respective value that should be writ

Re: [WiX-users] shared config file clobbering

2010-06-15 Thread Blair
If your base XML file (as shared by all three products) is fairly static, you should be able to create a shared component (a component where the GUID and the directory are the same for all three products). If your XML "transformations" can be applied in any order, you shouldn't have any problem usi

Re: [WiX-users] Converting Reg File(s) to WXS

2010-06-15 Thread Blair
I have a question: How would you prefer to associate a .REG file with a binary if you were harvesting an entire directory? Are your .reg files named the same as your .dll/.exe files? -Original Message- From: Christopher Painter [mailto:chr...@deploymentengineering.com] Sent: Tuesday, June

Re: [WiX-users] Question about register .net COM object

2010-06-15 Thread Wilson, Phil
The other thing to worry about is that RegAsm on an assembly will generate a type library and register it. RegAsm /regfile will create you a reg file but will not generate any type library Interface entries. Whether this matters or not depends on your COM interfaces, but if it does matter then a

[WiX-users] shared config file clobbering

2010-06-15 Thread Andrew Hammond
I have an XML config file which is shared by three products. Each installer currently uses util:XmlFile actions to put appropriate information in the config file. When only one product is installed, this works fine, but when two or more are installed, the last one installed clobbers the config of a

Re: [WiX-users] Best practice: Upgrade XML Config File (.Net)

2010-06-15 Thread Castro, Edwin G. (Hillsboro)
Author your installer package as a Major Upgrade. That will give you a package that can do fresh installs and upgrades. Xml schema/content migration is something I haven't figured out how to do acceptably within a MSI package. I'm very interested in hearing how others tackle this problem. Edwi

Re: [WiX-users] XMLFile

2010-06-15 Thread Alexander Shevchuk (Volt)
Your XML is malformed: \\convs07\Historical Integration\DataFarm\WIT\Files\ Should be either: Or \\convs07\Historical Integration\DataFarm\WIT\Files\ Alex -Original Message- From: Carolina Zuqueto Amaral [mailto:carolina.ama...@conv.com.br] Sent:

Re: [WiX-users] XMLFile

2010-06-15 Thread Castro, Edwin G. (Hillsboro)
The error says that it can't find the node specified by the XmlFile/@XPath. The syntax looks correct. I wonder if there are XML namespaces involved here. Edwin G. Castro Software Developer - Staff Electronic Banking Services Fiserv Office: 503-746-0643 Fax: 503-617-0291 www.fiserv.com Please co

Re: [WiX-users] WiX 3.0 error with .net 4

2010-06-15 Thread Jason Ginchereau
The old APIs will continue to work fine, even though they are deprecated. You just need the updated config file in order to target .NET 4. It looks like the main reason the old APIs are deprecated is because the new set of APIs support loading multiple simultaneous versions of the CLR into the

Re: [WiX-users] Converting Reg File(s) to WXS

2010-06-15 Thread Christopher Painter
Since I have a hybrid InstallShield / WiX environment, I typically import the regfile into an IS Merge Module, build it, dark it and steal it.     - Original Message From: Andy Clugston To: General discussion for Windows Installer XML toolset. Sent: Tue, June 15, 2010 5:57:22 AM Sub

[WiX-users] XMLFile

2010-06-15 Thread Carolina Zuqueto Amaral
Hi, I have the following node (file.dtsConfig): \\convs07\Historical Integration\DataFarm\WIT\Files\ Wix code: ... ... When I installed, the following error occured: Failied to find node: /DTSConfiguration/configurati...@path='\Package.Variables[User::path].Properties[Valu

[WiX-users] Best practice: Upgrade XML Config File (.Net)

2010-06-15 Thread Mathis Thomas
Hi, I search a good solution to upgrade an already installed .Net application. In this .Net application we have standard xml-config files, which has only settings with application scope. I have searched for many forum entries and it seems that nobody has useful information about it. The logic sho

Re: [WiX-users] Converting Reg File(s) to WXS

2010-06-15 Thread Andy Clugston
Agree, that is a very nice feature. I used tallow and wixcop, worked like a charm. Must have feature. :) On Mon, Jun 14, 2010 at 3:38 PM, Neil Sleightholm wrote: > That is correct Heat in WiX 3 doesn't convert reg files. The only route > is to use tallow and then wixcop. It would be nice to ge

Re: [WiX-users] Pressing ESc Key in the install Finish screen

2010-06-15 Thread Andy.Kruger
Thanks for the pointer. Setting cancel="no" fixed the issue. - Andy Build&Deployment Schneider Electric -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Pressing-ESc-Key-in-the-install-Finish-screen-tp5176628p5181151.html Sent from the wix-user

[WiX-users] installlocation

2010-06-15 Thread subramanyeswari
Hi, I mean my msi is not copying the files in the correct path(installed path of an application) during modifying option. How to get the installed path for an application during the install and how to use that path during modify option of an msi. Can any one give me an idea/example on how to

[WiX-users] MaintenanceWelcomeDlg bitmaps

2010-06-15 Thread Óscar Alberto
Hi all: I have created a msi with customized bitmaps (the company logo and all that stuff). While doing a normal installation, the images looks good; the problem comes when I try to make a patch: the msp file continues using the default bitmaps. In one of the files I've included the following:

Re: [WiX-users] Question about register .net COM object

2010-06-15 Thread Dirk Ziegelmeier
Hello, this is a working example of a COM object registration: Examples for the defines: D_Product_Fqn: Adm2.Adm.Dtm, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7b26e28fb8781288 C_DtmClass: Adm2.Adm.Dtm.Adm D_ProductImageRuntime: v1.1.4322 C_DtmClassId: C_DtmPr