Add the dialog to InstallIUSequence.
-Original Message-
From: sean farrow [mailto:sean.far...@seanfarrow.co.uk]
Sent: Tuesday, February 09, 2010 10:38 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: [WiX-users] Adding a dialog to the installation sequence
Hi:
Ho
Hi:
How can I add a dialog to the installation sequence. Preferably without
modifying any of the wix .wxs files.
Cheers
Sean.
--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self
Your "install and config the services" section is the issue, using WiX
you wouldn't run those commands directly - you would include the
relevant registry information in the MSI itself. That way if anything
goes wrong, Windows Installer can roll back the changes.
Without having the source code of t
Here link to full log: version 4.1.0130 and upgrade to 4.1.0131
http://slil.ru/28623390
--
View this message in context:
http://n2.nabble.com/Do-not-remove-some-files-on-major-upgrade-tp4505876p4546214.html
Sent from the wix-users mailing list archive at Nabble.com.
You can download at the same time, but the install will need to wait.
Depending on your platform and on the version of the framework, the
framework may or may not use Windows Installer, and you can't have two
simultaneous installations.
-Original Message-
From: bibhash phukon [mailto:phu..
If you are using transforms, use a bootstrapper that will supply
commandlines based on the determined machine state.
-Original Message-
From: Andy.Kruger [mailto:appr...@gmail.com]
Sent: Tuesday, February 09, 2010 10:00 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Best way
Not totally sure about my reverse Boolean logic skills this late at night,
but
NOT SystemLanguageID <> 1041
looks to me like this would be true always except when SystemLanguageID =
1041 (aka ja-JP, for those that don't want to look it up).
Also, this isn't your question, but it is something I n
I have a master MSI that embeds the language transforms and language
specific resources (for eg: help.chm and release notes files)
What is the best way to install language specific resources detecting a
particular language for eg: Japanese???
-
Andy
MSI Developer
Schneider Electric:working:
Hi,
Is it possible to download .net framework and install while installing
my setup.
Thanks,
--
Bibhash Phukon.
--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and
I have a master MSI that is targeted for English and Japanese language.
Right now I have segregated the locale specific resources to two different
component groups and everything is embedded in a single MSI
I have made the following changes to the WiX code to conditionally install
based on the lo
Tx all
got it working
On Tue, Feb 9, 2010 at 1:24 AM, Blair wrote:
> The first would appear to be a better candidate given Richard's
> investigations into Windows Installer's dialog engine's recognitions of
> property changes, but the dialog that is publishing would have to be
> sequenced after
Tx all.
Even though i planned to install SQL Express using custom action.. This
fails.
We cannot run another MSI using our MSI.
even though sql express is a exe after it get extracted, it is a msi.
so im still looking for an alternative :(
On Wed, Feb 10, 2010 at 5:10 AM, Blair wrote:
> Pally
So.. uhm.. any takers..?
On 2/8/2010 5:07 PM, Vern Graner wrote:
> On 2/5/2010 7:22 PM, Blair wrote:
> > In the "Stop the services" section, shouldn't that be "NET STOP "*?
>
> Yep.. spot on... I copied those and forgot to change the state to stop..
> all fixed. :)
>
> > You are using "self
Hi,
Thanks for the link, though I was looking for a wix code sample. I've
already got a better bootstrapper.
Cheers,
Matt
- Original Message -
From: "dB."
To: "General discussion for Windows Installer XML toolset."
Sent: Wednesday, February 10, 2010 12:14 AM
Subject: Re: [WiX-user
The Cancel menu option is there and I never really noticed it much until the
installer grew significantly.
Is there a natural breakpoint when Light checks to see if cancel has been
raised?
In other words... What is the expected behavior for Light to check for a
cancel? Cancel of a C compile c
Here is my debugging.
By following the wix chm, I implemented a very simple product.wxs which
includes a file component (see below code). The launch conditions locate at the
bottom of the product.wxs. Then I created a patch.wxs as the wix chm said. This
project can successfully use V2 launch co
Just design a YesNo dialog, or use a CA and call MsiProcessMessage(). The
dialog would probably be better. You can look at the source code for
examples of general dialog creation, use tutorials of dialog creation, or
just experiment.
The dialog would match the rest of your UI much more easily.
--
Hi:
Thanks, is there a yes/no dialogue in the wix ui library, or you use a ca
and show a messagebox using the windows api? Also, how can I get the
windows installer windows handle, is there an msi for this?
Cheers
Sean.
-Original Message-
From: Blair [mailto:os...@live.com]
Sent: 10 Febr
You can set properties using the AppSearch-related RegistrySearch.
You can then use those properties in your UI sequence to ask the user and
use properties you set in that dialog to condition the removal.
-Original Message-
From: sean farrow [mailto:sean.far...@seanfarrow.co.uk]
Sent: Tu
During patch uninstall, the patch's modification to the MSI's view is no
longer available, so what you see is "by design".
Windows Installer 4.5 added something called "Custom Action"/"Patch
Uninstall" behavior (I don't remember the order of the terms, use both
strings in your search query). The P
You should be able to use a type 19 custom action: see the Error attribute
of the CustomAction element.
-Original Message-
From: Jake Boone [mailto:jakeboon...@gmail.com]
Sent: Tuesday, February 09, 2010 11:06 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Property not set by
Sorry for not following up sooner. I've been away for the last couple of
weeks... The error massage was something like "Could not harvest data from a
file that was expected to be a SelfReg DLL. If this file does not support
SelfReg you can ignore this warning". Actually, I think I have found the
Pally sent a great link on this thread.
-Original Message-
From: Bimali Ponnamperuma [mailto:bimal...@gmail.com]
Sent: Tuesday, February 09, 2010 12:39 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Installing SQL express as a feature
I would be goi
1- There is no safe way from Windows Installer directly to remove registry
entries from other user's profiles. The best I have ever found is a
mechanism called "Active Setup" but it has never been publicly documented by
Microsoft which means it may or may not be in any future version of Windows
and
Hi:
Hi:
I need toperform a registry search for an uninstallation program (this is
an older version). Where should this be put, this doesn't need to be a
launch condition in this case.
If the executable exists, I then need to show a message box with yes/no
butons, and run the executable is the
There's a new feature in MSI 4.5 for this type of thing:
http://msdn.microsoft.com/en-us/library/aa370739(VS.85).aspx
http://blogs.msdn.com/windows_installer_team/archive/2008/03/25/windows-installer-4-5-servicing-enhancements-patch-uninstall-custom-actions.aspx
Phil Wilson
-Original M
I believe so.
Custom action are in MSI database which is transformed before the
install/uninstall (really repair in the case of the patch) starts running
custom actions. So during patch install you get patched actions executing.
During uninstall you get unpatched action or no action executing b
As anyone successfully installed the office 2003 (or 2007) Primary Interop
Assemblies depending on which version of office is installed? I am afraid I am
struggling with this, and cannot seem to find how to integrate them both into
the bootstrapper, and have it choose what to install automatica
Do the cancel build (etc.) buttons work?
If you're sure the regular "cancel build" options that work for C++ / C# builds
aren't working for wix (either the options aren't visible, or the options are
visible but don't function as you feel they should), go ahead and file a bug
against WiX 3.5 / V
Simple question... probably has a binary answer...
Is there any way to cancel a WiX build in mid-stream? (Visual Studio
2008 and WiX 3.0.) Am I missing a setting or WiX project design
best-practice that will allow this?
Scenario: Huge installer... small errors that show up in lots of
places
Hi,
I've scenario where I've added a couple of custom actions as part of the patch
and sequenced them in during install as well as the uninstall. Now during patch
install the custom actions are executed properly but during patch uninstall
none of the patched custom actions are executed. Is this
On Tue, 9 Feb 2010 17:44:02 +, Fan Zhang (UPG) wrote:
Fan,
> Thanks! I found WixUI_ar-ar.wxl from Wix 2.0 version. But it seems
> need more work to do before it can be used in wix 3.0. Assume I
> have a translated WixUI_ar-ar.wxl file, then do you know what steps
> should I follow to make thi
Since my external UI is WPF I am really bothered, both by having to
disambiguate several classes and by having to reference forms Dll just for a
few enums, when calling Installer.SetExternalUI. Hopefully these enums will
become UI-system-agnostic in the future.
TradeStation Group, Inc. is a pub
I have a Custom Action that runs before the AppSearch action. The CA
sets several Properties based on the installed Oracle client.
The CA is written in C#, and sets each Property by doing something like this:
session["PropertyName"] = "Value";
It appears to run fine, and in the MSI log file I
On 8 Feb 10 8:36 PM, Rob Mensching wrote:
> Sorry, I saw "GNU LGPL" as just "GPL".
That's my kind of mistake. Don't you start stealing my trademarked
behaviour!
--
The Planet: dedicated and managed hosting, cloud stora
Thanks! I found WixUI_ar-ar.wxl from Wix 2.0 version. But it seems need more
work to do before it can be used in wix 3.0. Assume I have a translated
WixUI_ar-ar.wxl file, then do you know what steps should I follow to make
things work? Shall I compile a private build of Wix or edit codepage some
Hi. I'm following ACKH's tutorial from
http://sourceforge.net/mailarchive/message.php?msg_id=1220630031632-841475.post%40n2.nabble.com
My intention is to deploy some dlls as native side-by-side assemblies.
In my case, I'd have a few myProduct.msi -s and one myCommonFiles.msm
(with side-by-side asse
In article ,
Bimali Ponnamperuma writes:
> Can anybody help me with the original question.
>
> i,e, why does the 2nd dialog get propted every time even though it has
> satisfied the condition 1 ?
Because you're not allowed to have more than one SpawnDialog (or
NextDialog) event on a cont
http://wix.sourceforge.net/manual-wix3/heat.htm
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 Scotland No.
SC15
http://msdn.microsoft.com/en-us/library/aa372457(VS.85).aspx
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 Scotla
http://dotnetinstaller.codeplex.com is an executable built on top of a library.
You could use the library and rebuild the UI from scratch. The runtime is C++
so that it runs on anything since Windows 98.
dB. @ dblock.org
Moscow|Geneva|Seattle|New York
-Original Message-
From: Matt Ly
I second this. We use http://dotnetinstaller.codeplex.com to install SQL
Express. In combination with the pre-built UI screens in
http://msiext.codeplex.com it's a drag-and-drop exercise. In addition, we found
that many of our customers either already have some kind of SQL Server, so we
made it
I am using wix to install a file and its shortcut.
i have to use a non-advertised shortcut. i am also setting ALLUSERS=1 (I am
using Win 2003 and wix 3.0)
But i have the following queries:
1) Non advertised shortcuts require a registry entry under HKCU.
So when some other user uninstalls the produc
At upgrade log (searching ComponentId 'TestFile'):
9:36:43: CostFinalize.
...
MSI (s) (BC:C0) [09:37:00:781]: Component: TestFile; Installed: Absent;
Request: Local; Action: Local
...
9:37:02: InstallValidate.
...
MSI (s) (BC:E4) [09:37:02:093]: Component: TestFile; Installed: Local;
Reque
OK thanks for the syntax.
Can anybody help me with the original question.
i,e, why does the 2nd dialog get propted every time even though it has
satisfied the condition 1 ?
On Tue, Feb 9, 2010 at 1:59 PM, Blair Murri wrote:
>
>
>
> Order="1">
>
>
>
>
>
>
>
> > Date: Tue, 9 Feb 2010 11:46:
I would be going ahead with this option ( i,e, to install from a custom
action)
Can you please explain me about the full ui ?
On Tue, Feb 9, 2010 at 1:56 PM, Blair Murri wrote:
>
> Yea, you could to that. You can't setup your database from within your
> install, however. It also won't install
Look up the component for the file you are searching for in your MSI (use Orca)
from the File table. Look up that component in the Component table and copy
both the Component and ComponentId values. Search a verbose log for each of
those two terms.
> Date: Mon, 8 Feb 2010 22:28:19 -0800
> Fro
> Date: Tue, 9 Feb 2010 11:46:55 +0530
> From: bimal...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] 2 SpawnDialog events does not work for
>
> else how can we give "SERVERNAME <> """ for the condition text .?? since it
> has < >
>
> On Tue, Feb 9, 2010
Yea, you could to that. You can't setup your database from within your install,
however. It also won't install SQL if you run the installation without full UI.
> Date: Tue, 9 Feb 2010 11:48:58 +0530
> From: bimal...@gmail.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Inst
49 matches
Mail list logo