FYI, Burn is all about making it *much* easier to build those sort of
installers, including managed code user interfaces. The pieces will start
coming together in the next couple months.
On Wed, Feb 10, 2010 at 2:35 AM, Nick Ball wrote:
> I had a quick stab at this, it was looking like a lot of w
Wrote about this a long while ago:
http://robmensching.com/blog/posts/2009/7/7/Tips-on-how-to-upgrade-from-WiX-v2-to-WiX-v3
On Thu, Feb 11, 2010 at 3:28 AM, Pally Sandher wrote:
> Install WiX 3.0 & run WiXCop.exe on your .wxs files to upgrade them to
> the WiX 3.0 schema.
>
> Shouldn't need to do
Can you please open a bug with the details so that we can fix the problem.
On Fri, Feb 12, 2010 at 7:54 AM, Benjamin Podszun <
benjamin.pods...@gmail.com> wrote:
> Hi.
>
> I "solved" it by downgrading to an old build of WiX. Seems like a
> regression to me. With a version from late 2009 it works
The working example is under development.
On Thu, Feb 11, 2010 at 5:31 AM, Vladislav Vaintroub wrote:
>
>
> > -Original Message-
> > From: wix-users-boun...@lists.sourceforge.net [mailto:wix-users-
> > boun...@lists.sourceforge.net] On Behalf Of Pally Sandher
> > Sent: Thursday, February
I read that error as: it couldn't find the component (the one you supplied
the CLSID to in your XML) in the indicated dll.
Does that help?
-Original Message-
From: Devlyn [mailto:devlyn_nap...@bd.com]
Sent: Friday, February 12, 2010 6:31 AM
To: wix-users@lists.sourceforge.net
Subject: [W
The preprocessor, while not a macro preprocessor (like what the C/C++
compiler has), does have a number of "macro-preprocessor-like" features. One
of the "holes" in that is the case you see.
The source files are parsed using an XML stream parser. Text fields (such as
attribute values and element t
I was under the impression that the expression
$(var.MyVar)
a preprocessor evaluation, evaluated at a similar time to .
However, some wix that I am compiling suggests this isn't the case.
I'm trying to define a variable as follows:
And then my wix example as:
...
So in other words, in c
Yet another reason to schedule RemoveExistingProducts late (requires a more
strict observance of the component rules).
Your only other option is to bootstrap the runtime's installation using a
separate MSI (or use the Microsoft-supplied EXEs).
-Original Message-
From: Simon Jackson [mailt
I looked it up really fast: RemoveRegistryKey/removeOnUninstall creates an
entry in the Registry table with the Name column being set to "-", which
causes the key to be removed when the component is removed without creating
the key when the component is installed.
The condition isn't part of the R
So yes, if the users has another application else which references the
modules, then they won't get uninstalled. But this isn't true for most users.
Currently our product does an uninstall & reinstall to do an upgrade, and this
results (excluding the previous case) in uninstalling and reinstal
Thanks for the tip. Unfortunately the registry keys still seem to get
deleted during the upgrade. I'm using a
RemoveRegistryKey/removeOnUninstall with the "NOT
UPGRADINGPRODUCTCODE" Condition. My guess is that the Condition gets
evaluated at installation time instead of during the upgrade. Is that
Just use the merge modules like you did. Don't bother with trying to
make them permanent.
The components in the merge modules will use reference counting.
So if other applications install the same merge modules (or use the
redistributable exe from MS)
the components will not be uninstalled when you
Am I correct in thinking that you mean we should just call the .exe which comes
from Microsoft, which would install the same components as the merge modules?
If that's the case then there's a slight problem. The .exes provided are very
slow, much slower than the merge modules are to install.
That's not what merge modules are for. Remove them from your installer &
bootstrap the redistributable instead.
Palbinder Sandher
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500
F: +44 (0) 141 945 8501
http://www.iesve.com
**Design, Simulate + Innovate with the **
Integrated En
Hi.
I "solved" it by downgrading to an old build of WiX. Seems like a
regression to me. With a version from late 2009 it works without any
change to the project. With the latest release(s) it fails with the
given error message.
Regards,
Ben
On Fri, Feb 12, 2010 at 1:24 AM, wrote:
> Hey, I'm ge
Greets all,
I'm having some difficulty registering
my COM dll - receiving an error that the component could not be found.
Here is the relevant section of the
log:
CreateComPlusApplications: Application:
Syslog
Action 17:38:42: CreateComPlusApplicationRoles.
Creating COM+ application roles
Acti
Guys, please ignore this - the formatting went to hell when I edited.
I'm going to repost a new posting -- just as soon as I can figure out how to
get my unique address again...
--
View this message in context:
http://n2.nabble.com/COM-Component-Error-Error-0x80070490-Failed-to-find-component-o
Greets all,
I'm having some difficulty registering
my COM dll - receiving an error that the component could not be found.
Here is the relevant section of the
log:
CreateComPlusApplications: Application:
Syslog
Action 17:38:42: CreateComPlusApplicationRoles.
Creating COM+ application roles
Acti
Thanks Guys. So basically any change that I make during the patch is not going
to be executed during patch uninstallation. I was thinking if I can set a
property during patch uninstallation.
-Original Message-
From: Wilson, Phil [mailto:phil.wil...@invensys.com]
Sent: Tuesday, February
Hello,
I'm using WiX to install some merge modules by doing:
And then in my feature:
They install fine with the product. However I would now like to leave the
merge modules installed when my feature is removed. The Permanent option on
Component sounds like what I want, but
If I use WiXNetFxExtension to test for NETFRAMEWORK35, does this mean
"3.5 itself is installed" or "3.5 or any later version is installed"?
(Pedantically, I guess I mean "3.5 or any later version which can run
applications built against .Net 3.5")
--
Cheers,
John
-
In the words of Chandler Bing.
Can open, worms everywhere.
Palbinder Sandher
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500
F: +44 (0) 141 945 8501
http://www.iesve.com
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotl
Does it fail on installation?
And as Sascha said that after pressing of the install button user will be
prompted to enter a username and password, but you should be sure that you
specified Impersonate="no" property on deferred custom actions which require
admin rights.
-Original Message
Hi,
How to create bootstrapper to download and install .net framework and
then run my msi. Can the msi and bootstrapper be in a single file or in the
same package.I need to download and install .net framework if its not
installed on the system and then run my .msi.
Thanks,
--
Bibhash Phukon.
-
24 matches
Mail list logo