My beginner's tutorial shows how to do this, although for WiX 2.0.
(Don't know if the same techniques will work in WiX 3.0.)
http://www.merlinia.com/mdt/WiXTutorial.msl
See in particular the last section on this page:
http://www.merlinia.com/mdt/WiXTutorial3.msl
In part 5 (not on-line yet) I de
Hi,
In while product installation, user may enter any customized path by
his/her choice, since our product gives branding option to the user.
So, if user enters any string or his/her company name containing
apostrophe, we should be able to proceed with the installation.
Thank you,
R
Anthony Wieser wrote:
> Any suggestions on how to debug this, as I'm getting nowhere. There doesn't
> seem to be any reference to any of my properties in the log file, which I'm
> generating with the msiexec -lvx option
>
If the properties aren't showing up, FindRelatedProducts isn't finding
Matt Anderson wrote:
> Unfortunately (for this particular instance), tallow also
> generates the , , , and tags which
> are not really needed.
>
Tallow's meant to be a one-off tool that produces output you tweak as
needed so there's very little in the way of features to help plug it
into a
koawmfot wrote:
1. I have authored a large file containing maybe 50 vbcontrols
(ocx, dll) and compiled it into a master binary wixlib containing
the files. My goal was to reference components from this master
file when i needed specific ones in a main project. The problem
i
Patrick Schmid wrote:
> I am trying to have my setup program pick the appropriate language based on
> the user's computer: If the user has a German Windows, I want my setup
> program to be German. In all other cases, I want it to be in English.
>
MSI doesn't support that -- packages are per-lan
Hi,
i have got an out of proc com server app.exe that an installer must install
and register.
how to instruct wix to do the registration?
the installer needs to accomplish the same effect as:
app.exe -regserver at install and
app.exe -regserver at un-install
I am using two custom action to ac
I am trying to have my setup program pick the appropriate language based on
the user's computer: If the user has a German Windows, I want my setup
program to be German. In all other cases, I want it to be in English.
Can I do anything like this with wix3?
If yes, how?
Thanks,
Patrick Schmid
---
I want to make a package, that downloads the files from a specific location
via the internet, is this possible and are their any examples/tutorials you
might be able to lead me to.
--
View this message in context:
http://www.nabble.com/Download-files-for-install-tf3677937.html#a10277956
Sent fro
ARPSIZE doesn't seem to do anything to the size shown in Add/Remove
programs.
From: Brett Kapilik [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 01, 2007 2:34 PM
To: Don Tasanasanta; Simon Dahlbacka
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] s
Although I have not tested this, what about setting the ARPSIZE property
directly?
http://msdn2.microsoft.com/en-us/library/aa367748.aspx
- Brett
_
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Tuesday, May 01, 2007 4:26 PM
After reading the article I'd like to know...
Is there a way to set an estimated size for the whole program and not
have to set a size for each component?
From: Simon Dahlbacka [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 01, 2007 11:56 AM
To: Don Tasanas
I am pulling my hair out with this problem. Hopefully someone can point out
what I am doing wrong. My goal is to have the installer run a script to
backup all the databases on the server, install some programs, then run
scripts to update the database (structure and layout). There is data in
the
ok.. perfect answer and that is what i thought...
so that set me on my path and leaves me know with a few other questions, one
related to the topic and a few slightly off-topic... i am using only wix
v3.
1. I have authored a large file containing maybe 50 vbcontrols (ocx, dll)
and compiled it
Upon further testing, that didn't work. I guess I don't really
understand how these things work. I've read the tutorial, and have done
a bunch of testing on my own, but I just don't get it. So I tried
using:
And I've tried using:
Somehow I get the same result (the component runs in both case
as the size might be a guesstimate, (see
http://blogs.msdn.com/oldnewthing/archive/2004/07/09/178342.aspx) I'm not
too surprised, although it sounds somewhat strange
On 5/1/07, Don Tasanasanta <[EMAIL PROTECTED]> wrote:
The program size displayed in Add/Remove programs increases by adding the
The program size displayed in Add/Remove programs increases by adding
the new size to the existing size instead of displaying the new size of
the upgrade.
Example:
Original size ARP displays 1 meg
Upgrade 1 (1 meg in size) ARP displays 2 megs
Upgrade 2 (1 meg in size) ARP displays 3 megs
Michael,
In that case you will need to run both MSIs from a setup.exe
bootstrapper (non-MSI). The problem as I understand it is that you can't
reliably run one MSI from another. You see, the Windows Installer
service only allows one MSI to be loaded and running at a time. I
believe that there are
You can't launch one MSI from another one, and you can't bundle one MSI
inside another.
So I assume what Brett is saying is that you should make a Setup.exe
that first launches one MSI, and when that is complete, launches the
other.
I've actually written a program like that recently, an MSI lau
Michael,
One constraint of Windows Installer is that it is not possible to run
one MSI from within another (also known as a nested install). If you
have two MSI files, you need an external application (the bootstrapper)
to trigger the installation of each MSI in turn. (I.e. your second
option.)
Thank you for the quick response Brett.
I'm rather ignorant when it comes to installer scripts (This is a new hat
for me) so I'd like to make sure I'm understanding you.
The other software is installed via MSI so when you say I need to bootstrap
into 1 setup.exe does that mean I should create my
I'm trying to get my upgrade/downgrade logic correct, and am having trouble
with FindRelatedProducts.
The output of my log looks like this:
Action start 17:35:33: FindRelatedProducts.
Action ended 17:35:33: FindRelatedProducts. Return value 1.
MSI (c) (9C:44) [17:35:33:309]: Skipping action: Demo
If the other installer does not use MSI then you could call it with a
custom action. If it is MSI then you will probably have to resort to
bootstrapping both it and your installer into one setup.exe routine.
- Brett
_
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Here's what I'm trying to achieve: I'd like to be able to create a feature
fragment (which will be in its own .wxs file) that can be referenced by a
main .wxs file. This feature may have assemblies that need to be registered,
so the most obvious solution would be to call tallow to generate the
Thanks Bob. I need the installer to support both UI driven and silent
modes,
so I guess I'll have to approach this differently (ensure the /q is
passed to the msi for a silent install; either by creating a custom
package for the bootstrapper or mod the vs03 bootstrapper sample).
Cheers,
Dave
--
I have a piece of OEM software on which my software depends. I'd like to
bundle everything up into a single executable that will run the OEM install
script then finish my install script (or in the reverse order if necessary).
I'm new to Wix and there seems to be a lot there so I thought it may be
[EMAIL PROTECTED] wrote:
Thanks, I believe I have that aspect sorted out for now via build
settings. I wasn't sure it was .NET, but installing the .NET
framework on a machine that exhibited the problem caused the problem
to go away.
.NET includes the VC++ runtime DLLs, so...
--
sig://bo
Dave Roberts wrote:
> Just wondering if it's possible to kick off a silent install using
> Windows Installer properties (rather than with /q on the cmdline)?
>
As long as your package has dialogs and an InstallUISequence table, MSI
will use it to present a "full" UI. If you don't want to show
Thanks, I believe I have that aspect sorted out for now via build
settings. I wasn't sure it was .NET, but installing the .NET framework
on a machine that exhibited the problem caused the problem to go away.
From: Bob Arnson [mailto:[EMAIL PROTECTED]
Sent: Mo
conkerjoe wrote:
> iv been through the hell of bootstrappers and wix in the past..
> its actually easier to just hav a massive batch file install it than
> go through the pain.
> could you help the pain and offer a sugestion of a bootstrapper??
I've had good results using NSIS to make a bootstrapp
Thomas Leigh wrote:
> Would doing this mean that you can't do a distributed install, or
> whatever you would call it, i.e. with GPO?
All the bootstrap solutions have this limitation. If you want to go for
'pure msi' you need to list the prerequisites in the install
instructions and let the admi
Would doing this mean that you can't do a distributed install, or
whatever you would call it, i.e. with GPO?
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tony Hoyle
Sent: 01 May 2007 11:58
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] MSJ
conkerjoe wrote:
> one of the main issues is whats to stop the user just starting the msi
> rather than the Exe you ask them to start with an autorun.. it really needs
> to be something like Installshield which wraps everything up into 1 exe so
> the end user doesnt have a choice
Have a required
> one of the main issues is whats to stop the user just
> starting the msi rather than the Exe you ask them to start
> with an autorun..
Yes, it's difficult to make something fool-proof, because the fools are
so ingenious. :-)
You could try turning the bootstrapper and the MSI into a single
s
Take a look at dotNetInstaller. It's a bootstrap program that can
install various standard prerequisite products, and then launch an MSI.
Rennie
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> conkerjoe
> Sent: 1. maj 2007 11:37
> To: wix-user
iv been through the hell of bootstrappers and wix in the past..
its actually easier to just hav a massive batch file install it than go
through the pain.
could you help the pain and offer a sugestion of a bootstrapper??
one of the main issues is whats to stop the user just starting the msi
rather
conkerjoe wrote:
> What would be the most efficient way to install MS Jet 3.5 on a machine with
> Wix ?
Use a bootstrapper to run MDAC (then most likely jet 3.5 sp3). MDAC
most likely won't do anything on newer systems as it's in the base OS
now, but you want to be sure in case it gets run on w
What would be the most efficient way to install MS Jet 3.5 on a machine with
Wix ?
I have tried to add the dlls/exes manually and registerting the relevent
ones into system32 dir.. but nothing gets placed on the end mahcine.. no
errors or anything but no files to be seen.
the section for the jet
Not sure I understand your question, but maybe try using dotNetInstaller
instead of the VS 2005 bootstrapper. With dotNetInstaller you can
specify any parameters you want when it starts the MSI.
Rennie
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf
Hi there,
Just wondering if it's possible to kick off a silent install using
Windows Installer properties (rather than with /q on the cmdline)?
I'm asking as I've created a vs05 bootstrapper which installs
prerequisite components for my MSI, but in some scenarios would like to
be able to launch t
40 matches
Mail list logo