[WiX-users] How to force do not uninstall some drivers.

2011-04-13 Thread Shal Philipp
Hi, all. Is there a possibility don't uninstall drivers using difxapp schema by condition? Or dont uninstall always and uninstall by condition? And not all drivers - only some of them. I can't put a condition into difxapp CA cause there is only one CA for uninstalling all drivers. Thanks for answ

[WiX-users] WiX 3.6 Burn Problem -- How to run EXE in place instead of caching?

2011-04-13 Thread John Robbins
Hello, I'm chugging along with a Burn installer and its going quite well. Burn is downright cool! That is until I ran into Chrystal Reports. I've gotten Burn to include all the loose Chrystal Reports files with the LayoutDirectory and LayoutFile elements into my installer directory structure. H

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Chad Petersen
My syntax is a bit different than yours, but you might try removing the [WPFINSTALLDIR] property from your element. But, I always nest my Components under a element, so our approach is somewhat different. -Original Message- From: Kevin Burton [mailto:kev...@buyseasons.com] Sent: Wednesd

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Chad Petersen
I only ever specify On="install". I think of it as asking the install to remove the existing file, no matter what, prior to copying in the new file. I equate this to the InstallShield "Always Overwrite" setting. -Original Message- From: Kevin Burton [mailto:kev...@buyseasons.com] Sent: W

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Kevin Burton
I cannot seem to get RemoveFile to work. Here is my latest attempt: . . I still get the error message in the log below. The error message indicates that the file is unversioned but mod

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Kevin Burton
I add but on uninstall. This gave me the same "error" do you usually specify "both" for this kind of situation? Kevin Burton Senior Software Engineer BUYSEASONS 262-901-2000 Office 262-901-2312 Fax kev...@buyseasons.com -Original Message- From: Chad Petersen [mailto:chad.peter...@harla

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Chad Petersen
Yes. I run into this with text files (xml mostly) a lot. RemoveFile can go under the same Component as the File element. That's the way I always use it. -Original Message- From: Kevin Burton [mailto:kev...@buyseasons.com] Sent: Wednesday, April 13, 2011 12:21 PM To: General discussion for

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Kevin Burton
The log file looks like: MSI (s) (6C:EC) [13:54:36:297]: Executing op: FileCopy(SourceName=dfl-c3lj.con|app.Config,SourceCabKey=FILE_ServiceAppConfig,DestName=app.Config,Attributes=512,FileSize=32206,PerTick=32768,,VerifyMedia=1,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=-68012

Re: [WiX-users] WiX force copy file.

2011-04-13 Thread Chad Petersen
Check a verbose log file and it should say why it is not replacing that file. Typically because it is newer than the file you hope to replace it with. The RemoveFile element can be handy for some of these types of issues. Not positive it's what you'll want, but maybe. -Original Message-

[WiX-users] WiX force copy file.

2011-04-13 Thread Kevin Burton
Here is the situation. I have a configuration file that on installation in release mode I use the XmlFile task to remove a section of the file. In debug I also use XmlFile to modify one of the elements in the file. Is what I am finding is that if I do a release installation followed by a debug i

Re: [WiX-users] Component condition question

2011-04-13 Thread Greg
I'm not sure I understand Maksim - the current value of UPGRADE_FROM_VERSION is "6.1.8.78", and the condition is UPGRADE_FROM_VERSION <= "6.1.8.85" (ignoring "AND InstallMode<>"Remove"" for the moment). You are saying to try the condition ""UPGRADE_FROM_VERSION" <= "6.1.8.85"", which is no differe

[WiX-users] How to register multiple file types - Multiple ProgId

2011-04-13 Thread Sandi Remar
Hi! I am having trouble associating multiple file types with one exe file. I want my program to handle multiple file types. My code is as follows... However, it does not register properly file types in Windows. Can you help? Thanks                                        

[WiX-users] Building multiple patches using purely WiX

2011-04-13 Thread Eugen Ungureanu
Hello everyone, Is there anything documented on how to build multiple patches using purely WiX? I need to create a patch that should apply to multiple installed instances for a given product. Thanks Eugen - This transmission

Re: [WiX-users] Component condition question

2011-04-13 Thread maksim.vazhenin
Try to use condition "UPGRADE_FROM_VERSION" <= "6.1.8.85". Not sure it will fix your problem. Better approach is to use "Upgrade" element to find previous versions of your product, and then use properties which are set by FindRelatedProducts. -Maksim -Original Message- From: Greg [mail

[WiX-users] AUTO: Kenneth L Resler is out of the office. (returning 04/14/2011)

2011-04-13 Thread Kenneth . Resler
I am out of the office until 04/14/2011. I will be out of the office, with limited email and phone access. Note: This is an automated response to your message "Re: [WiX-users] CopyFile with pattern doesn't copy files - it looks like it doesn't do anything at all!" sent on 4/13/2011 2:44:00 AM

Re: [WiX-users] CopyFile with pattern doesn't copy files - it looks like it doesn't do anything at all!

2011-04-13 Thread Tobias S
Check out src\Setup\Msi\Lux.wxs or src\Setup\Msi\VStudio.wxs from wix sources for a working sample: ... At first glance Component/@Directory is sourcedir and Component/CopyFile/@DestinationProperty destinationdir... 2011/4/13 Amber Scouras : > I'm using WiX 3.5 (an RC from late in 2010)