Re: [WiX-users] Type 1 Custom Action

2007-02-12 Thread Levi Wilson
Well, basically my CA (MyInfCA) installs a file-system driver by calling InstallHinfSection on the inf. My type 51 CA is currently setting the MyInfCA property to the path of the inf file. This works fine, but I wasn't sure if it was that proper way to do it. I can see that if my CA needed

[WiX-users] ListView table?

2007-02-12 Thread Guillaume Girard
Hi, I'm using wix 2.0.4820. I'm trying to add a ListView control to one of my dialog boxes, which I would like to fill with a custom action during installation. Unfortunately, the ListView table is not created in the final MSI file. Shouldn't it be? I'm doing exactly the same thing with a

[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] Specifying Backup location

2007-02-12 Thread Bob Arnson
Ian Couper wrote: 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?

Re: [WiX-users] Upgrade

2007-02-12 Thread Bob Arnson
Leila Lali (Excell Data Corporation) wrote: Yes you are right. I finally get that I need to do major upgrade and it fixes my problem. Another question is if I do major upgrade and change produce code, Is there any way to prevent lower version to install when upper version is already

Re: [WiX-users] ListView table?

2007-02-12 Thread Bob Arnson
Guillaume Girard wrote: Unfortunately, the ListView table is not created in the final MSI file. Shouldn't it be? WiX doesn't create tables unless they're needed. You can use the EnsureTable element to make sure an empty table is created. -- sig://boB http://bobs.org

[WiX-users] what determines the Icon that shows up in Add Remove Programs?

2007-02-12 Thread Dan Hoeger
I'm trying to figure out how to get my install to use a particular Icon. Most applications use a custom Icon but my installs all contain just the plain Windows Install default Icon. How do I get it to use a specified Icon? I don't see anything in the doc and couldn't find anything on msdn for

Re: [WiX-users] Heat and COM Registry Permissions

2007-02-12 Thread Levi Wilson
Hmm, all seems to be well if I set ALLUSERS=1 grin /. Apparently the default of an MSI is a per-user installation. So this isn't an issue with heat or registry permissions at all, but user error. Is this typical in most installations where you have to explicitly set ALLUSERS=1? On 2/12/07,

Re: [WiX-users] Heat and COM Registry Permissions

2007-02-12 Thread Wilson, Phil
Well it's the usual and required behavior for a per-user install to add the entries to the current user's hive. It's not particularly secure if a per-user install adds system-wide COM registration so that anyone on the system can use it. It's regsvr32 that's rather limited here because it doesn't

[WiX-users] How to use the registry to detect if a product is installed

2007-02-12 Thread Harvey Werner
I would like to use the Windows registry (and not the file system) to detect if a package is already installed. I was thinking of using something like this, but can't seem to get it to work. I most likely have the logic wrong in CDATA. Property Id=PACKAGE_INSTALLED RegistrySearch

Re: [WiX-users] How to use the registry to detect if a product isinstalled

2007-02-12 Thread Wilson, Phil
There isn't a data item called ProductVersion under those those registry keys. Why not use a component guid in an AppSearch instead? Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Harvey Werner Sent: Monday, February 12, 2007 2:09 PM

[WiX-users] adding non-default extension

2007-02-12 Thread Simon Dahlbacka
I'm trying to add an Extension to an existing file type (.sln if that matters) I've tried with the following snippet... Component Id=FooComponent Guid=PUT-GUID-HERE File Name=Foo.exe Id=FooExe Source=!(wix.SourceDir)Foo.exe/ Extension ContentType=text\plain

[WiX-users] per-user vs per-machine

2007-02-12 Thread Don Tasanasanta
Can a per-user install be told to upgrade over a per-machine install if the user is the same administrator for both? Is there any way to tell a per-user install to do a major upgrade over a per-machine install? Ie: uninstall the per-machine install and change it to a per-user.

Re: [WiX-users] Votive - Adding File as a Link

2007-02-12 Thread Cullen Waters
When I did this, I still got the ugly folders. From: Justin Rockwood [mailto:[EMAIL PROTECTED] Sent: Thursday, February 08, 2007 12:51 PM To: Cullen Waters; Justin Rockwood; 'Mark Capaldi'; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Votive - Adding File as a Link Another thing you

Re: [WiX-users] Question about logging from a WIX install

2007-02-12 Thread Rob Mensching
My only guess would be to do something like: Property Id=MYDOMAINPASSWORD Hidden=yes / That may or may not work for command-line properties. From: Andy Ness Sent: Monday, February 12, 2007 10:25 AM To: wix-users@lists.sourceforge.net; Rob Mensching; Justin Rockwood Subject:

Re: [WiX-users] per-user vs per-machine

2007-02-12 Thread Don Tasanasanta
A little more detail... In the previous version of my install ALLUSERS was set to 2 to allow the computer to install as per-machine if the user was an admin and per-user if the user was not. Now the product has changed to install strictly as per-user. When FindRelatedProducts is run it