AFAIK, you can't. I've heard of CustomActions existing to flip the ALLUSERS
property if they determine the previous install didn't match the current
install. Sounds busted but I haven't personally investigated such issues.
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasa
I have never used AppSearch before and the WiX docs are very vague on
it.
Can you give me an example of how it's used?
Harvey Werner
> -Original Message-
> From: Wilson, Phil [mailto:[EMAIL PROTECTED]
> Sent: Monday, February 12, 2007 2:43 PM
> To: wix-users@lists.sourceforge.net
> Sub
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 det
My only guess would be to do something like:
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: Question about logging from a WIX install
I h
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
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.
--
I'm trying to add an to an existing file type (.sln if that
matters)
I've tried with the following snippet...
The problem with this is that this becomes the *default* action, which
obviously is not what I want for the .sln type, how do I do so that
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
To:
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.
Any advice is a
That did it.
From: Levi Wilson [mailto:[EMAIL PROTECTED]
Sent: Monday, February 12, 2007 3:19 PM
To: Dan Hoeger
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] what determines the Icon that shows up in Add Remove
Programs?
Set the ARPPRODUCTICON property to the name of your icon. S
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
Hmm, all seems to be well if I set ALLUSERS=1 . 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, Levi Wils
I think this works
might have a syntax error though
Dhaval Patel-4 wrote:
>
> Yet another minor query for all you WIX pros out there. I just realized
> that
> running the batch command after uninstall in my case fails because by the
> time I reach the "batch-file" functionality, the actual bat
Set the ARPPRODUCTICON property to the name of your icon. So you'd have
and later you'll have to include that icon:
On 2/12/07, Dan Hoeger <[EMAIL PROTECTED]> wrote:
I'm trying to figure out how to get my install to use a particular Icon.
Most applications use a custom Icon but my instal
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
Yet another minor query for all you WIX pros out there. I just realized that
running the batch command after uninstall in my case fails because by the
time I reach the "batch-file" functionality, the actual batch file has
already been uninstalled by WIX. Is there a way (I am sure there is) that I
I have been using heat.exe to generate my version 3 information for files.
For my COM objects, I noticed a strange behavior. Heat.exe seems to
properly setup the registry keys that I need, but the permissions on the
CLSID\[my guid] keys differ than those that would be set if I used regsvr32
on th
Hi All,
Does Wix support removal of temporary files after install. Temporary files
like the ones installed and used during install, but of no use after
install.
THanks,
Kaushik
-
Using Tomcat but need to do more? Need to sup
Is there a max size limitation outside of cab files? I have a file that is
around 2.06 GB and I am getting this error. When I install it installs
fine, but this error will not Fly with microsoft. Is there a way to chop up
a file into multiple cabs then let the installer reintegrate the pieces b
I have an MSI file created via WIX. In there, I install some services. For
these services, I need a domain account name and password. This information is
passed in to my MSI via the command line of MSIEXEC (egg. "msiexec /qn /I
MyInstall.msi /L*vx c:\install.log MYDOMAINNAME=domain\account
M
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 instal
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
---
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?
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
-
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 Lis
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
hi,
I got a dialog (FeatureDialog) with a SelectionTree to change
installstates of severall features.
Among those features there is a special feature which is hidden, this
feature gets changed with a checkbox on a different dialog after the
FeatureDialog.
The default level of the feature is 0, and
Does anyone have tried wix to install a printer driver and a
PortMonitor?
If so would you mind to explain the wxs file used?
Regards
Friedrich
--
Q-Software Solutions GmbH; Sitz: Bruchsal; Registergericht: Mannheim
Registriernummer: HRB232138; Geschaeftsfuehrer: Friedrich Dominicus
---
28 matches
Mail list logo