nstaller-problem-why-does-restartmanager-mark-service-as-rmcritical-and-no/8147540#8147540
Basically, you can 'lie' about the custom action and mark it as immediate
instead of deferred. The drawback is that if your install fails and rollsback,
the service you've shut down will sti
why it would just assume that cmd.exe won't be stopped by the uninstaller
(maybe because it wasn't installed by our installer)?
Alain
-----Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: June 27, 2013 14:12
To: 'General discussion for Windows Install
If you're using Burn, wouldn't you just be able to set the MsiPackages' Visible
attribute to yes, and Permanent to yes (so that all the packages aren't
automatically uninstalled if the Bundle is uninstalled)?
-Original Message-
From: nianderneves [mailto:niander.ne...@gmail.com]
Sent: J
I haven't looked into this myself, but I can't imagine how it would be
automatically translated, so I'm guessing you would have to do localization
yourself.
-Original Message-
From: TimM [mailto:timmay...@smarttech.com]
Sent: June 27, 2013 17:28
To: wix-users@lists.sourceforge.net
Subje
So long as the Bundles' UpgradeCode is identical, I would think a MajorUpgrade
would uninstall the older version and install the new one.
However, something beyond my installer knowledge may be going on, since I don't
know what may be causing this line:
[23D0:26C4][2013-06-28T10:38:09]w354: Una
s a "critical application" and it
> doesn't realise that it's entirely under the control of my service, which
> will stop it when requested.
>
> Does this sound plausible, given what you know about the RestartManager? Do
> you know why it would just assume that cmd.e
spose().
Personally I wouldn't use anything asynchronous or of indeterminate length such
as net stop in a cmd shell. If you're seeing something timing-related, that may
be where the issue is. Even in C++ the code to stop a service is not
complicated and is much more manageable than a c
hat it will be ok and the service will stop.
If your java runtime has an explicit way to stop a Windows service and wait for
it to actually finish, use that.
Phil
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Friday, June 28, 2013 11:14 AM
To: 'General discu
open when doing the uninstall
(but after stopping the service)? I seem to remember bugs in the snap in that
either leaked handles or maintained an exclusive lock on the SCM that would
exhibit this behavior.
-----Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Friday,
en when the MSI is bundled with burn. Does anyone have any ideas why this
is happening, why our own bundle installer (v1.0.1) is somehow holding/using
the existing installed version (v1.0.0) of MyClient's files in use?
Alain
-Original Message-
From: Alain Forget [mailto:afor...
WixBundleName = My Bundle
v1.0.1 Installer
[0ACC:11A0][2013-06-29T15:23:39]i410: Variable: WixBundleOriginalSource =
C:\Windows\TEMP\MyBundleInstaller_v1.0.1.exe
[0ACC:11A0][2013-06-29T15:23:39]i410: Variable: WixBundleProviderKey = {GUID4}
[0ACC:11A0][2013-06-29T15:23:39]i410: Variable:
WixBundl
I know about those, but how do I use them to prevent Burn from locking the
existing files before it runs the installer package to MajorUpgrade?
-Original Message-
From: Phill Hogland [mailto:phogl...@rimage.com]
Sent: June 30, 2013 20:54
To: wix-users@lists.sourceforge.net
Subject: Re: [
in the Chain today. However, a package in your chain may upgrade an
existing package on the machine during install.
Note2: Very screwy that a package would be detected per-user when it is really
per-machine. That would be something to investigate further.
On Sun, Jun 30, 2013 at 7:43 PM, Al
+1: I have also noticed this or something similar.
-Original Message-
From: Adam Roper [mailto:adam.ro...@guidance.eu.com]
Sent: July 2, 2013 08:46
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Burn: Related Package ID
Hi,
I have a Burn bundle that incorporates 9 other MSI pa
those processes at all (and I in fact WANT it to stop/terminate,
and it is coded as such, as far as I know).
To those of you who understand processes and services better than I, does this
make sense? Or is there no such parent-child dependency amongst
processes/services?
Alain
-Original Me
The only way I have found thus far to quietly run a CustomAction with admin
privileges given to the installer is using this (taken from
http://wix.sourceforge.net/manual-wix3/qtexec.htm):
.
.
.
However, I want to run such a CA asynchronously, but setting
Return="asyncNoWait" retu
Interesting thought, and thanks for the feedback. It's worth taking a closer
look at how MyClient is designed to make sure we didn't miss something that's
causing this problem.
Our service is designed similarly to how you describe. MyClient is a control
process/thread that is an object containi
I think most of us use Properties like this:
NOT Installed AND NOT WIX_UPGRADE_DETECTED AND NOT
WIX_DOWNGRADE_DETECTED
WIX_UPGRADE_DETECTED AND NOT (REMOVE="ALL")
(REMOVE="ALL") AND UPGRADINGPRODUCTCODE
Installed AND (REMOVE="ALL") AND NOT (WIX_UPGRADE_DETE
oth cases, should the two Packages use the same
GUID, or different ones?
The rule says no, but what I understand about Components and GUIDs says yes
(see http://robmensching.com/blog/posts/2003/10/18/component-rules-101).
What do you say?
Thanks,
Alain
****
me in two packages that
reference the same component?
On 05-Jul-13 11:57, Alain Forget wrote:
> I know the rule is that Components should always have unique GUIDs (at least,
> I think that's the rule).
Nope, it's way more complicated than that (as Rob's blog posts point out)
Grab the appropriate Service Packs for the OSes you're supporting from
http://search.microsoft.com/en-us/DownloadResults.aspx?q=service+pack , and
Bundle them into an installer with burn?
Sound like it could end up a pretty massive installer though, so you might want
to look into the WiX elemen
I wondered the same thing, but I think it makes sense as it is, since the all
bundles for all installed programs are stored in C:/Windows/Installer for when
modifications, repairs, and uninstalls are needed.
Alain
-Original Message-
From: nianderneves [mailto:niander.ne...@gmail.com]
ause there's some kind of
> > dependency whereby the MyClient service won't fully stop until its children
> > processes have terminated, even though MyClient's execution does not
> > actually dependent on those processes at all (and I in fact WANT it to
> >
I think that if the UpgradeCode is the same in both products, that would be
cause.
If you want both applications to be treated as distinct, their UpgradeCodes
must be distinct.
Alain
-Original Message-
From: Greg Edwards [mailto:gedwa...@polariswireless.com]
Sent: July 16, 2013 16:49
+1
-Original Message-
From: Tony [mailto:yellowjacketl...@gmail.com]
Sent: Tuesday, July 30, 2013 11:36
To: WiX Users
Subject: [WiX-users] wixtoolset.org down?
I get a 503 when I attempt to browse to wixtoolset.org, is it down for
maintenance?
--
Tony
--
why.
On Tue, Jul 30, 2013 at 8:42 AM, Alain Forget wrote:
> +1
>
> -Original Message-
> From: Tony [mailto:yellowjacketl...@gmail.com]
> Sent: Tuesday, July 30, 2013 11:36
> To: WiX Users
> Subject: [WiX-users] wixtoolset.org down?
>
> I get a 503 when I attem
Try the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/wix-users
-Original Message-
From: Mike Scott [mailto:mike.sc...@bbc.co.uk]
Sent: Wednesday, August 14, 2013 07:44
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] unsubscribe
http://www.bbc.co.uk/
Thi
Are you using the MajorUpgrade element?
-Original Message-
From: Андрій Цьок [mailto:andrey.t...@gmail.com]
Sent: Wednesday, August 14, 2013 08:23
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Wix and backward compatibility with Visual Studio setup
project.
After installing n
Get the installer for Quicktime and bundle it with your own installer using
burn. See the Bundle element and go from there.
Alain
-Original Message-
From: Michal Jirman [mailto:jirman.mic...@gmail.com]
Sent: Friday, August 16, 2013 06:20
To: wix-users@lists.sourceforge.net
Subject: [WiX
Cool! I wonder if there would be a way to send monthly chat logs to this
mailing list for archiving purposes, so that answers could be later searchable
(which I think is one of the best features about this list).
-Original Message-
From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com]
This seems to me to have posted just fine and not in my own spam.
-Original Message-
From: Phil Wilson [mailto:phildgwil...@gmail.com]
Sent: Friday, August 16, 2013 15:04
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] My posts in your spam
Apparently many of my posts are ar
Add the "Start" attribute to the ServiceControl element?
Alain
-Original Message-
From: Андрій Цьок [mailto:andrey.t...@gmail.com]
Sent: Monday, August 19, 2013 13:35
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Restore previous windows service if ne
Don't WiX-built MSIs have no UI by default?
See the second paragraph of http://wix.tramontana.co.hu/tutorial/user-interface
So just follow the steps of the Getting Started tutorial, and don't do anything
in the UI section?
-Original Message-
From: ak m [mailto:wixak...@gmail.com]
Sent
-
From: Bruce Cran [mailto:br...@cran.org.uk]
Sent: Friday, August 23, 2013 13:51
To: afor...@cmu.edu; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] [Wix]: Create silent MSI using Wix
On 23/08/2013 15:20, Alain Forget wrote:
> Don't WiX-built MSIs hav
; General discussion for Windows Installer XML toolset.;
'Bruce Cran'
Subject: RE: [WiX-users] [Wix]: Create silent MSI using Wix
Technically that dialog is not part of MSI, its part of OS msiexec.
-Original Message-----
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: August-23-13
You may already have verified this, but are you sure
$(var.KMI.IntelliDrive.ServicesHost.TargetDir) is defined and points to the
location you think it's supposed to point to?
Alain
-Original Message-
From: Bodden, Doug (KMWCR) [mailto:doug.bod...@kantarmedia.com]
Sent: Friday, August 2
)KMI.IntelliDrive.ServicesHost.vshost.exe.config
?
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Friday, August 23, 2013 16:56
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] LGHT0103 error where path is shorter than 255
characters and file is present
Hi all,
Our installer bundled with burn currently posts a simple "Setup Complete"
message when the install is done. How can we add additional text on this last
window when the install is complete?
Thanks,
Alain
--
Int
Good question. I'm not sure exactly, but here’s some code snippets that what
I'm guessing are UI-related:
http://schemas.microsoft.com/wix/BalExtension";
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";
>
...
Obviously, we are using a custom theme (RtfTheme-Custom.
in
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Tuesday, August 27, 2013 08:13
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Add text to final window in burn bootstrapper/installer
Good question. I'm not sure exa
No.
Go here to unsubscribe yourself:
https://lists.sourceforge.net/lists/listinfo/wix-users
-Original Message-
From: msanc...@specservices.com [mailto:msanc...@specservices.com]
Sent: Tuesday, August 27, 2013 18:26
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] UNSUBSCRIBE
ver even posted anything. How can this be
turned off?
Mark Sanchez
Systems Developer
SPEC Services, Inc.
-----Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Tuesday, August 27, 2013 3:40 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: R
> "If you can set bundle properties you can use that property's value as your
> text, maybe..."
Could you be more specific on how this might be achieved?
> "...the WixStdBA bootstrapper needs changed to allow better text on the
'success' pages. "
Nice to know this is on the wix-dev's radar, bu
I hope that's directed at Steven, because I don't know what that means (and I
have yet to figure out where and how to modify .wxl files).
Alain
-Original Message-
From: Bruce Cran [mailto:br...@cran.org.uk]
Sent: Wednesday, August 28, 2013 11:39 AM
To: General discussion for Windows Ins
X 3.8 if possible.
>
> --
> Bruce
>
> Sent from my iPhone
>
> On 28 Aug 2013, at 16:52, "Alain Forget" wrote:
>
>> I hope that's directed at Steven, because I don't know what that means (and
>> I have yet to figure out where and
--
Bruce
Sent from my iPhone
On 28 Aug 2013, at 19:14, "Alain Forget" wrote:
> Will this functionality be available on Monday (or sooner) at
> http://wixtoolset.org/releases/ ?
>
> If so, how will I be able to add text to the Setup Complete box? My apologies
>
f it was out on wixtoolset.org, it would be a weekly 3.8
build which is not considered Stable.
-----Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Wednesday, August 28, 2013 3:45 PM
To: 'Bruce Cran'; 'General discussion for Windows Installer XML toolset
Why aren't you using the ServiceInstall element to install your service? If
there is any way at all to use it, instead of a CA, I think most of us would
strongly recommend it. At the very leat, you'll eaily be able to stop your
service before uninstall.
-Original Message-
From: nkshirsa
What would be the absolute easiest way to have an MSI package that only
displays a single dialog box with some text that we can set ourselves?
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Wednesday, August 28, 2013 23:21
To: 'Hoover, Jacob'; 'General di
While I was just doing something similar with WixUI_Minimal, the problem was
because of this:
...
NOT Installed
...
NOT
Installed
I get similar errors as you if I don't comment out one of those two Show
elements. Mysteriously, this creates no probl
You can try, but I'm thinking a lot of references to things in the Commons are
going to break.
-Original Message-
From: jo...@msli.com [mailto:jo...@msli.com]
Sent: Thursday, August 29, 2013 18:35
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] using Wi
Binging "wix custom bootstrapper application tutorial" gives this:
http://bryanpjohnston.com/2012/09/28/custom-wix-managed-bootstrapper-application/
It's a lot of work just to get rid of the bootstrapper UI, but...that's how it
is, unfortunately. I decided to circumvent my problem rather than de
Marie, you need to unsubscribe yourself here:
https://lists.sourceforge.net/lists/listinfo/wix-users
-Original Message-
From: Marie Gourmelon (Allegis Group SAS) [mailto:v-mag...@microsoft.com]
Sent: Thursday, September 5, 2013 11:02
To: General discussion for Windows Installer XML tool
There seems to be a lot of demand for more control over installer and
bootstrapper UIs. Just out of curiosity, is this being worked on for future WiX
releases?
-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: Wednesday, September 18, 2013 12:27
To: General dis
experience.
That being said, WiX is open source, so anyone is free to contribute
enhancements.
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Wednesday, September 18, 2013 11:31 AM
To: 'General discussion for Windows Installer XML toolset.'
Subj
start from scratch,
just modify the stock one.
--
Nicolás
2013/9/18 Alain Forget :
> It just seems like going from the stock BA to rolling your own custom BA just
> to either get rid of the UI or add a single text box, radio button, or
> window/step seems extremely costly in time and ef
ctions how to build.
On Wed, Sep 18, 2013 at 12:29 PM, Alain Forget wrote:
Is there a tutorial somewhere on where to get the stock BA's source,
and how to make various changes to it? The only tutorial I found involved
cracking open Visual Studio, and seemed to involve recompilin
me a little while to grasp what the Extended BA is doing...
Steve
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: September-18-13 4:02 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can
ba by changing the
templates. But my minor changes are adding graphics, adding installer
version, changing text size, etc.
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: September-18-13 5:02 PM
To: 'General discussion for Windows Installer XML toolset.
slide as a learning opportunity. This time, this thread just makes
me mad. I encourage you to go understand the problem and volunteer some
time to improve the WiX toolset yourself before suggesting that I help you
again.
On Wed, Sep 18, 2013 at 1:02 PM, Alain Forget wrote:
> Which I th
58
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can it be UI-less?
It's not trivial to create a custom BA. It takes time and effort.
On Wed, Sep 18, 2013 at 12:51 PM, Alain Forget wrote:
> I don't mean compile and setup tim
ow the code
works...
As Wesley stated you can change minor things by the theme wxl/xml files
But what you are suggesting is NOT minor, it is a major code change...
Once again for checkboxes/radio buttons etc.. check out Neil's extended BA I
have already included his codeplex link
St
27;s in
3.8 I believe. A new window needs a custom BA.
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: September-18-13 5:35 PM
To: Wesley Manning; 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] [SPAM] Re: Bootstrapper -- Can it
on)
Bundle.wxs
And has info here on how to customize UI:
http://neilsleightholm.blogspot.co.uk/2008/08/customised-uis-for-wix.html
-Original Message-----
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: September-18-13 5:00 PM
To: Steven Ogilvie; 'General discussion for Windows I
sts.sourceforge.net
> Subject: Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can it be UI-less?
>
> On 9/18/13 1:57 PM, Alain Forget wrote:
> > Gaining knowledge on how code works is fine and has value, but at the end
> > of the day, people have primary tasks they're trying
The MajorUpgrade tag is probably the easiest way to support upgrades.
-Original Message-
From: nkshirsagar [mailto:nkshirsa...@gmail.com]
Sent: September 24, 2013 08:34
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Need some help with upgrade support in first version of MSI
I'
1) http://wixtoolset.org/documentation/manual/v3/xsd/wix/majorupgrade.html
My MajorUpgrade element looks like this:
So presumably your Product element has a Version attribute that would be
something like "1.0.0". Say this is installed on client machines, and you need
to upgrade them. You wou
How can you be sure launch.exe and set.ini will be there?
Why not bundle them with the MSI using burn?
(http://wixtoolset.org/documentation/manual/v3/bundle/)
Alain
-Original Message-
From: ak m [mailto:wixak...@gmail.com]
Sent: Tuesday, October 8, 2013 12:14
To: General discussion for
We had a similar goal and we were unable to do what you want. Our solution was
to write a program that periodically ensures the credentials are valid, and if
they aren't, display a window that prompts for them. We then run this program
as a custom action in the WiX package.
If you find some sol
On the other hand, there are a number of free WiX tutorials on the web. I
mostly used this one: http://wix.tramontana.co.hu/tutorial
It’s a bit dated (for example, when you get to major upgrades, see the
MajorUpgrade element in the WiX documentation instead of what the tutorial
teaches you), bu
You probably need to go into the WiX source (found here:
https://wix.codeplex.com/downloads/get/58) and get the a copy of the .wxl
and .xml files of the theme your installer uses. In my case, these were the
RtfTheme files in the BalExtension. You can then edit these local copies
however you
At the bottom of every e-mail, there is this link where you can do it:
https://lists.sourceforge.net/lists/listinfo/wix-users
See the bottom of the page; put your e-mail address there and unsubscribe.
-Original Message-
From: Jacky Liang [mailto:jli...@kierantimberlake.com]
Sent: Wednes
Unsubscribe yourself: https://lists.sourceforge.net/lists/listinfo/wix-users
-Original Message-
From: Chirayu Shishodiya [mailto:chirayu.shishod...@red-gate.com]
Sent: Friday, November 15, 2013 08:21
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Unsubscribe
Please unsubscribe
.
Quoting Alain Forget :
> Unsubscribe yourself: https://lists.sourceforge.net/lists/listinfo/wix-users
>
> -Original Message-
> From: Chirayu Shishodiya [mailto:chirayu.shishod...@red-gate.com]
> Sent: Friday, November 15, 2013 08:21
> To: WiX-users@lists.sourcefor
Hi all,
Our installer creates and tries to start a service, but it fails to start with
the following error message:
"Service 'My Service' (MyService) failed to start. Verify that you have
sufficient privileges to start system services."
However, before files begin to be installed, the UAC prom
ssion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Service not starting
You have a .bat file for the name - that doesn't seem correct to me. The
ServiceInstall table in an MSI file requires a service
executable.
Phil
-Original Message-----
From: Alain Forg
Staff
Digital Channels
Fiserv
Office: 503-746-0643
Fax: 503-617-0291
www.fiserv.com
> -Original Message-
> From: Alain Forget [mailto:afor...@cmu.edu]
> Sent: Sunday, February 17, 2013 1:05 PM
> To: 'Phil Wilson'; 'General discussion for Windows Installer XML tools
See MajorUpgrade? It greatly simplified my upgrading process.
http://wix.sourceforge.net/manual-wix3/wix_xsd_majorupgrade.htm
Alain
-Original Message-
From: chennam [mailto:chatrapathi.chen...@gmail.com]
Sent: February 25, 2013 13:52
To: wix-users@lists.sourceforge.net
Subject: [WiX-use
I use this, but there may be a better way:
Privileged OR AdminUser
-Original Message-
From: Christoph Goetz [mailto:christoph.go...@giepa.de]
Sent: February 28, 2013 03:14
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] deactivate UAC before i
ows
service on Google yielded a number of results that say
you'll need to use a wrapper to execute your java app as a windows service.
Edwin G. Castro
Software Developer - Staff
Digital Channels
Fiserv
Office: 503-746-0643
Fax: 503-617-0291
www.fiserv.com
> -Original Message---
Hi all,
I have some EXEs I want to run, some only when installing (let's call them
InstEXEs), and others when uninstalling (let's call them
UninstEXEs) either as part of a major upgrade or a standard uninstall, to undo
what the InstEXEs do.
Searching the internet has suggested that running EXEs
after the CostInitialize, FileCost and CostFinalize
steps, meaning that the fileIds should be referenceable.
The install process was working fine before I added the CustomAction-related
tags. Anyone have any idea what might be going wrong,
and how to fix it?
Alain
*******
e.net]
Sent: March 8, 2013 03:32
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Running EXEs at install and uninstall
On 07/03/2013 19:37, Alain Forget wrote:
> 2) I only want the InstEXEs to run during installation (and not when
> uninstalling). Thus, since there is the spe
mulate + Innovate with the ** Integrated
Environmental Solutions Limited. Registered in Scotland
No. SC151456 Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP Email Disclaimer
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: 08 Mar
http://wix.tramontana.co.hu/tutorial/upgrades-and-modularization/checking-for-oldies
Look for "SELFFOUND". I believe that page discusses how to prevent
re-installing the same version.
Alain
-Original Message-
From: chennam [mailto:chatrapathi.chen...@gmail.com]
Sent: March 8, 2013 17:1
t appears as though WiX or the installer isn't making the
> substitution at all. I've triple-checked that there are no typos, and
> that this CustomAction happens after InstallServices, which implicitly comes
> after the CostInitialize, FileCost and CostFinalize
step
I'm not sure what might be wrong with your code, but here's what I have for a
custom license agreement:
In the same dir as the wxs, the License.rtf file contains my custom text of the
agreement.
Alain
-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.
This works for me, but I'm not doing any VBScript.
...
Alain
-Original Message-
From: Vladimir Yelnikov [mailto:vladimir.yelni...@gmail.com]
Sent: March 19, 2013 10:59
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Modify Public property from VBScript CustomAction
Many reasons, one of which is because they were created by the application as
it was running on the client machine, and weren't a
part of the original installation package.
We'd need more details to help much more.
Alain
-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@p
ns up everything
Thank you,
Michael Ogilvie
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Tuesday, March 19, 2013 4:01 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Uninstall
Many reasons, one of which is because they
I've also been pointed to this:
http://code.dblock.org/msi-property-patterns-upgrading-firstinstall-and-maintenance
Alain
-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: March 20, 2013 09:57
To: General discussion for Windows Installer XML toolset.
Subjec
This isn't much to go on. Can you show us the FirewallException and related
tags you're using, so we might see what could be wrong?
Alain
-Original Message-
From: John Lalande [mailto:j...@psrm.ca]
Sent: March 22, 2013 11:05
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Firew
As far as I understand it, "Installed" means, "Before this installer was run, a
version of this program was already installed on
this machine". Someone please correct me if that isn't quite true.
As far as &ftDatabase=3, I have no idea, I haven't yet seen that syntax yet.
Alain
-Original Me
Huh, I just noticed that my explanation directly contradicts the behaviour
you're seeing, so...either I'm wrong, or there might be
something flaky going on in your installer.
Alain
-Original Message-----
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: March 22, 2013 11:43
To
point is being created, and it could
take several minutes, so they should be patient?
I've had little luck inserting custom UIs panels in the WiXUI extension, so I'm
hoping there's something easy/simple we can do,
without having to roll our own UI altogether.
Alain
***
In my very limited experience, I've been impressed with how clean and easy
doing major upgrades are using WiX (with little more than
a single MajorUpgrade tag).
Whenever possible, I would recommend always doing a major upgrade (just because
it works so well), unless there's some reason you
*real
n the WiXUI extension, so I'm
hoping there's something easy/simple we can do,
without having to roll our own UI altogether.
Alain
***
Alain Forget, Ph.D.
Postdoctoral Researcher
CyLab, Carn
t lost?
-----Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Thursday, March 28, 2013 10:57 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] No user feedback during 3+ minute restore point
I can't be the only one with this or a similar problem of the inst
nd have no GUI in my MSIs.
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: March-28-13 12:57 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] No user feedback during 3+ minute restore point
I can't be the only one with this or a similar problem of the
ore ExecuteAction in
> the InstallUISequence.
>
> Note, burn turns off system restore for all the child MSI's as it's
> creating a single restore point for the bundle, which if you are
> installing multiple MSI's can be a huge time saver.
>
> -Original Mes
1 - 100 of 194 matches
Mail list logo