yes these binaries have versions.
Varun.
--- On Mon, 6/15/09, Wilson, Phil wrote:
From: Wilson, Phil
Subject: Re: [WiX-users] Inconsistent modification date time of Patched Binary
on different timezone.
To: "General discussion for Windows Installer XML toolset."
Date: Monday, June 15, 200
Jirong Hu wrote:
> OutputFile="$(IntermediateOutputPath)\" ToolPath="$(WixPath)"
> Extensions="$(WixPath)\WixIIsExtension.dll;$(WixPath)\WixUtilExtension.dll" />
>
You need to include WixUIExtension as well. That's where the WixUI
dialogs are stored.
--
sig://boB
http://joyofsetup.
Jirong Hu wrote:
> Action="disable">
> Action="disable">
>
Try combining the conditions into one Condition element.
--
sig://boB
http://joyofsetup.com/
As shown below, I have an ALREADY_INSTALLED property which is supposed to be
set before going into the UI, where it is used to hide/show dialog text
dependent on the ALREADY_INSTALLED property.
But looking at the logs, this property doesn't get set until AFTER the
SettingsDialog gets created, s
Scott Sharpe wrote:
> My apologies I gave some incorrect information. I am not specifying the
> impersonate attribute. Apparently that is different from a 'yes' or a 'no'.
> I rather hate that about WiX. I'm an explicit kind of guy.
>
You can be as explicit as you want. However, it's not
It seems can't find standard UI extention while I run this task from
CruiseControl.Net. But there is no problem while run it from command line. Any
idea what's wrong?
Thanks
Jirong
C:\SFSBuildRoot\Release11.1.5Assessme
You can use the MSIRESTARTMANAGERCONTROL property to disable restart
manager (http://msdn.microsoft.com/en-us/library/aa370377(VS.85).aspx).
I have had issues with RM and services, does your install include a
service?
Neil
-Original Message-
From: Stefan Kuhr [mailto:kustt...@gmx.li]
Sen
Hello everyone,
When running my msi as part of a major upgrade on Vista with msiexec /qb, I
get a dialog stating
"The following applications should be closed before continuing the install"
followed by the app that the msi will replace and that is currently running
and the option to close and at
Brian,
It looks like the install in taking place, however from looking at the
install log it appears that there are a couple places where it is
failing and the install is doing an auto rollback, removing everything
that was previously installed. One place it's failing is when it goes to
create a
My apologies I gave some incorrect information. I am not specifying the
impersonate attribute. Apparently that is different from a 'yes' or a 'no'. I
rather hate that about WiX. I'm an explicit kind of guy.
I was hunting around and found a reference to a custom action type value that
makes
Hi
For this dialog, I want to diable the "Next" button when either password
doesn't match or ComboBox has no value selected. But the following code doesn't
check the value of ComboBox. How to fix this?
Thanks
Jirong
1
The whole MSI SDK documentation is huge, no one would expect anyone to
absorb it all quickly; many people building MSIs only need to be
conversant with a fraction of it. Did you look at the Remarks section of
the Feature Table documentation, as Rob recommended? It's about half a
page, and (as he sa
Thanks, that does help me a lot.
Do you know whether we could get the real number of disk space cost using an
custom action or something? So we could warn the user if he just have 1KB
free bytes, which means he could not complete the installation because the
actual space occupied is definitely lar
I did look at the MSI SDK. It gave me more keywords that I could search for.
After searching and spending the day yesterday modifying my code and running
the created MSI, I was able to change the directory that I was installing to. I
apologize for my sarcastic response and hope I didn't offend
Thanks. That helps.
-Original Message-
From: Rob Mensching [mailto:r...@wixtoolset.org]
Sent: Thursday, June 18, 2009 11:28 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Using properties in a WiX file
Not all columns in the MSI Database are "Forma
Not all columns in the MSI Database are "Formatted". In the case below
the Feature.Title column is marked "Text". That means whatever you put
in that column is displayed verbatim.
Andrea Adams wrote:
> Hi folks -
>
> This is a very fundamental question, but what I think should be happening,
> i
Hi folks -
This is a very fundamental question, but what I think should be happening,
isn't. Within the tags, I define a property:
When I try to use that property in a feature title, for example:
When I build and run the MSI (I'm using WiXUI_FeatureTree), I see "[FOO]" as
the title of th
See the ReserveCost element.
kezhong zhou wrote:
> Hi, guys,
>
> I want to change the File Costing a little bit, for example add DirectX disk
> space costing in system drive. I install DirectX through DirectXSetup
> function in a wix Custom Action. Thus, the DirectX disk space costing is not
> acc
Also, 5017 is a pretty old build. There were some fixes in that area in
the last 6 months.
If a verbose log file shows the Component that did the uninstall being
uninstalled try upgrading.
Brian Rogers wrote:
> Hey James,
>
> Are you actually seeing that COM+ is not being removed? When I used i
If you use the SqlScript element it never installs the files on disk.
Unfortunately, it does have a bit of a performance issue so the really
big files might run really slowly.
Otherwise, I think you're looking at creating a very complex CustomAction.
Tom Crozier wrote:
> I have several large (1
Hey James,
Are you actually seeing that COM+ is not being removed? When I used it, back
in the 2.0 days, it worked fine for me. I have seen many developers that
register COM+ incorrectly in there DllRegister call. This can cause the
issue where these aren't being completely uninstalled. However, s
Now that I've been successful with installing a complus component, I'm
looking at what is involved in uninstalling complus components. I did
some searching on the net and I saw some indication that since the
installer doesn't remove complus components, this may be a bug?
Again, I'm using Wix 3.0
Ive had the 3rd error (LGHT1076) with a file whose version resource was
missing the language entry. Right click in Explorer and select
properties and, on the version tab, see if there is an entry for
Language. There probably isnt.
If its your file, you can fix it. If its a third party product, con
If you want a minor upgrade, you have to go with
* install msi with command REINSTALLMODE=vomus, not good for
normal users
You don't make the users do this themselves. Create a bootstrapper that
passes that argument when doing a minor upgrade.
-Brian Simoneau
-Original Message-
I have several large (100 MB) sql scripts that I need to run after installing
our product. I would like to create a separate Media cabinet to include them in
(which would NOT get installed onto the user's system) and run the scripts from
there, since I don't want to waste the time and bandwidth
Hi wix-users,
I tried to use WixEdit to create a wix install package. When I add some
.exe files to package and build it, I got the following errors:
: error LGHT0204 : ICE03: Invalid Language Id; Table: File, Column:
Language, Key(s): VPHL7Sender.exe
error LGHT0204 : ICE03: Invalid Language Id;
Hi All,
I have a problem with upgrade. If I try to upgrade to another version and I got
error "Another version of this product is already installed ...".
I use 2 msi with the same productID and upgradeCode. First is v2.0.0.0, second
is v2.5.0.0. Can I do a minor upgrade using a full msi?
I know t
Thank you so much Neil! That worked! Ahh, it feels so good to be over
that hurtle. :) Thank you Brian for all of your input as well.
Jim
-Original Message-
From: Neil Sleightholm [mailto:n...@x2systems.com]
Sent: Wednesday, June 17, 2009 3:34 PM
To: General discussion for Windows
Hi,
I have 2 machines with me. One is development and other is testing machine. I
am making build on development machine. However Installshield 2008 was
installed on machine but I made the build using Wix. From long time I not using
the Installshield from my machine.
1) To show the Webex to my c
I see you install the InstallShield on your machine and then heat the
directory. When you say it blows up your network settings on uninstall, which
install and machine are you referring to?
1) InstallShield uninstall on your machine
2) WiX uninstall on another machine
3) Other
If the answe
> Fiorillo Nicola wrote:
> > Not
> Installed
> >
>
> It also means that you can't install any other services.
Thanks Bob,
I will take in mind.
--
Crystal Reports - New Free Runtime and 30 Day Trial
Check o
Hi, guys,
I want to change the File Costing a little bit, for example add DirectX disk
space costing in system drive. I install DirectX through DirectXSetup
function in a wix Custom Action. Thus, the DirectX disk space costing is not
accumulated in the regular file costing step, which might lead t
32 matches
Mail list logo