Hi,
I have problem in checking the feature whether installed or not at
uninstallation time. I have used below scripts
My requirement is, based on feature selection I have to run the custom task, I
am able to run the custom actions successfully based on feature selection at
installation time
I am beginner in Wix installer development, I need Wix installer to be
created for my web application.
I need to get .wxs file generated for every build. My web application
folder structure look like this
I Images
iiCss
I have created a merge module which needs to use a directory created by the
parent installer.
The goal is that the merge module will place its output into a folder of a
specific ID declared by the parent MSI.
I cannot just use fragments because this merge module needs to be used from
installshi
Hi,
The approach I would recommend is try not to put so much meaning into
the version number. Make the MSI version number something simple, which
always changes.
We have deliberately restricted things to Major.Minor.build for the MSI
version number. Internally the buil number is rolled every ti
Polite bump on this...
Am I approaching this from the wrong angle? I mean, I know I can easily add
a registry entry with the version string in any format I want, but I am more
concerned about how to identify the product in x.y.z format in order for
upgrades to work.
There must be someone else he
Hey Reese,
A bootstrapper would have nothing to do with WIX in terms of support. This
would be an application similar to the one that Arun mentioned he is working
on currently. Basically an application (setup.exe) that calls into your
previously built MSI files and executes the installations, unin
Brian,
You are absolutely right, but I am in the process moving from a single install
shield package to a more flexible Msi modules using Wix with one Setup.exe
which is created in C# which does the initial Prerequisite installs(such as
.NET Framework/SQL Server) and use a CommandLine to Setup.
Hi Brian, thanks I do appreciate as many cents as I can get. You mentioned a
boot stapper, do you know if WiX supports this or is this something I would
have to custom develop?
On Tue, Jan 6, 2009 at 9:31 AM, Brian Rogers wrote:
> Hey Reese,
>
> I hope you don't mind my 2¢. If you are able to co
Thanks Arun. I think what you are saying is to have an installer for the
common components as well which makes sense to me as I was thinking of doing
that too. Anyone know of any gotchas regarding this approach?
On Tue, Jan 6, 2009 at 9:22 AM, Arun Perregatturv <
aperregatt...@napcosecurity.com> w
This is a good starting point:
http://msdn.microsoft.com/en-us/library/aa370579(VS.85).aspx
Plus this: http://www.joyofsetup.com/2008/12/30/paying-for-upgrades/
Neil
-Original Message-
From: Pankaj Agrawal (Infosys Technologies Ltd)
[mailto:v-pa...@microsoft.com]
Sent: 06 January 2009 2
MSI SDK has a bunch of pages dedicated to the different ways you can upgrade
and update your application. They are terse but read them carefully and your
options will become clear.
-Original Message-
From: Pankaj Agrawal (Infosys Technologies Ltd) [mailto:v-pa...@microsoft.com]
Sent: T
Here my requirement is that if I have the older version installed then I want
to upgrade it to the new version without uninstalling the old version. Means I
want to upgrade only those file which are now not part of my msi or those which
got updated in the new one. If my older version is not pres
(It's funny link )Hahaha and it works. Thank you.
Arun Perregattur
-Original Message-
From: Rob Mensching [mailto:rob.mensch...@microsoft.com]
Sent: Tuesday, January 06, 2009 12:53 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Reinstallation of Mo
God, I love letmegooglethatforyou.
Rob Mensching wrote:
> http://www.letmegooglethatforyou.com/?q=wix+major+upgrade
>
>
> -Original Message-
> From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com]
> Sent: Tuesday, January 06, 2009 09:42
> To: General discussion for Windows Ins
http://www.letmegooglethatforyou.com/?q=wix+major+upgrade
-Original Message-
From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com]
Sent: Tuesday, January 06, 2009 09:42
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Reinstallation of Modified
Some links to examples would be appreciated.
Thanks,
Arun Perregattur
-Original Message-
From: Rob Mensching [mailto:rob.mensch...@microsoft.com]
Sent: Tuesday, January 06, 2009 12:27 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Reinstallation of
Thanks that worked.
-Original Message-
From: Kamil Mierzejewski [mailto:kamil.mierzejew...@techland.pl]
Sent: Tuesday, January 06, 2009 12:17 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Conditional install question
Conditionally set feature condi
Hey Reese,
I hope you don't mind my 2¢. If you are able to componentize to the level
you mention below I think it might be easier for you to use individual MSIs
for the installations. Having said that I realize this will then push you to
a bootstrapper if you want to deploy a suite of your product
Look for examples of Major Upgrade. Lots of resources out there.
-Original Message-
From: Arun Perregatturv [mailto:aperregatt...@napcosecurity.com]
Sent: Tuesday, January 06, 2009 09:25
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Reinstallation of M
Conditionally set feature conditions to 0 (exlusivelly).
Use Condition element under Feature element with Level="0" and
appropriate condition.
W dniu 2009-01-06 18:06, Scott Sam pisze:
> I have Office plugins that can be installed. One for office 2007 and one
> for Office 2003. Each plugin has i
Rob,
I have the same situation, how do I detect and silently uninstall old version
and reinstall new version.(code snippet would be helpful).
Thanks,
Arun Perregattur
-Original Message-
From: Rob Mensching [mailto:rob.mensch...@microsoft.com]
Sent: Monday, January 05, 2009 11:19 PM
T
Yes, Feature/Condition.
-Original Message-
From: Scott Sam [mailto:s...@clearviewecm.com]
Sent: Tuesday, January 06, 2009 09:07
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Conditional install question
I have Office plugins that can be installed. One for
Reese,
We have exactly the same situation as yours. We have Database Server/Server/Web
Server/Client Installation.
The way I did before wix was to create individual installers for each of the
Installation type. That was a disaster because if I had to fix something that's
common to all then I li
I have Office plugins that can be installed. One for office 2007 and one
for Office 2003. Each plugin has its own feature. I currently have to
registry searches set up to check if either of the two office versions
are installed or not. Is it possible to make the feature's visible in
the feature tr
The root parent is a DirectoryRef to TARGETDIR. That's because I can't get all
the files/directories in one wxs without a stack overflow or an error building
the CABs so I have things parsed out in fragments.
--
John M. Cooper
-Original Message-
From: Rob Mensching [mailto:rob.mensch
What is the parent of the Directory element? All Directory elements need to be
parented to TARGETDIR/SourceDir.
-Original Message-
From: John Cooper (Volt) [mailto:a-jc...@microsoft.com]
Sent: Tuesday, January 06, 2009 08:45
To: General discussion for Windows Installer XML toolset.
Subje
I'm getting a 2707 error I'm having trouble deciphering. Here's an extract
from the verbose log:
Action 17:13:29: SET_TARGETDIR.
Action start 17:13:29: SET_TARGETDIR.
Action ended 17:13:29: SET_TARGETDIR. Return value 1.
Action 17:13:29: FindRelatedProducts. Searching for related applications
Ac
Hi Rob, sure, we have a small team of about 4 developers and I'm the only
one who has MSI / build / installation knowledge. I want to get to a point
where (obviously with some of my help) the others projects, solutions, etc.
can be merged or built into a master installer or installers. One thing we
Thank you very much this fixed it :D
-Original Message-
From: Scott Sam [mailto:s...@clearviewecm.com]
Sent: 6. janúar 2009 15:51
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Display of ComboBox values
Do you have the attribute ComboList set to yes?
Do you have the attribute ComboList set to yes? I think that is what fixed it
for me.
-Original Message-
From: Kjartan Þór Kjartansson [mailto:kjar...@eskill.is]
Sent: Tuesday, January 06, 2009 9:29 AM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Displa
Hi all,
I am having a bit of a problem regarding comboboxes in the installer, when a
combobox drops down it displays the text value but when the users selects a
value from the list the box closes displaying the value from the value column
instead of the text column. Is there any way to fix this
The third party software Installshield allows installation on network
drive or mapped drive.
We have a requirement to have wix setup(.msi) to be installed on network
/ mapped drive.Can you please tell me how can this be done.
Thanks a lot again,
Regards,
Gaurav.
---
Appreciating a lot for replying to my earlier threads.
As you have said that "Msi SDK does not allow install on network/mapped
drive" .
The third party software Installshield allows installation on network
drive.
I was just wondering... is it under no circumstances possible to
configure the wix f
2009/1/6 Kelly Leahy :
> Robert, your best bet if you're building a C/C++ custom action is to use
> static linking so you don't have any dependencies.
Kelly, thanks for the clue.
Rob
--
__
I have seen this as well on both XP and Vista with MSI 4.5, I have usually
thought it was becouse I was trying to open the file to shortly after building
the install, need to wait a few seconds, don't know why but when I wait I don't
see this behavior.
Also saw this with the latest build of the
No answer but I have been seeing this too. I find that if you cancel the
dialog it sometimes continues but other times it just comes back. If I
cancel the install altogether it usually works ok. I am using the MSI
v4.5 and have seen it on Windows XP and Vista.
Neil
-Original Message-
From
Hi
Sometimes we are facing this problem of our installer hanging up with a window
displaying
"please wait while the installer finishes determining your disk space
requirements".
And, this cost computing continues till forever.
This is happening on XP machines with msi.dll version number 4.5.60
37 matches
Mail list logo