[WiX-users] remember installed features during major upgrade

2011-06-10 Thread Martin Kulov
Hi,

 

I am sure this is a commonly asked question, but I cannot find any resource
explaining this.

 

Scenario:

User has installed the product and changes the default selected features to
install.

During major upgrade the installer fails to remember what features user has
selected to install at first place and installs all features as specified by
default in the MSI.

Question:

How should one keep user selected features between major upgrades?

 

Thank you!

 

Martin Kulov

 

Microsoft Regional Director

VS ALM MVP, MCT, INETA Speaker

 

http://www.kulov.net

Phone: (+359) 88 821 3255

 

--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] remember installed features during major upgrade

2011-06-10 Thread Peter Shirtcliffe
In the upgrade installer, set UpgradeVersion/@MigrateFeatures=yes

If you use MajorUpgrade, migrate features is the default.

-Original Message-
From: Martin Kulov [mailto:mar...@kulov.net] 
Sent: 10 June 2011 16:25
To: wix-users
Subject: [WiX-users] remember installed features during major upgrade

Hi,

 

I am sure this is a commonly asked question, but I cannot find any resource
explaining this.

 

Scenario:

User has installed the product and changes the default selected features to
install.

During major upgrade the installer fails to remember what features user has
selected to install at first place and installs all features as specified by
default in the MSI.

Question:

How should one keep user selected features between major upgrades?

 

Thank you!

 

Martin Kulov

 

Microsoft Regional Director

VS ALM MVP, MCT, INETA Speaker

 

http://www.kulov.net

Phone: (+359) 88 821 3255

 

-
-
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] remember installed features during major upgrade

2011-06-10 Thread Martin Kulov
Peter, I own you one!
MigrateFeatures did the trick.

However I need to explicitly set it to Yes, although I am doing major
upgrade.

UpgradeVersion Minimum=$(var.RTMVersion)
IncludeMinimum=yes
Maximum=$(var.CurrentVersion)
IncludeMaximum=no
Language=1033
Property=UPGRADEFOUND 
MigrateFeatures=yes /

Removing MigrateFeatures attribute does not enable this behavior by default.
Is this expected?

Thanks a lot!
Martin

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] 
Sent: Friday, June 10, 2011 6:35 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] remember installed features during major upgrade

In the upgrade installer, set UpgradeVersion/@MigrateFeatures=yes

If you use MajorUpgrade, migrate features is the default.

-Original Message-
From: Martin Kulov [mailto:mar...@kulov.net]
Sent: 10 June 2011 16:25
To: wix-users
Subject: [WiX-users] remember installed features during major upgrade

Hi,

 

I am sure this is a commonly asked question, but I cannot find any resource
explaining this.

 

Scenario:

User has installed the product and changes the default selected features to
install.

During major upgrade the installer fails to remember what features user has
selected to install at first place and installs all features as specified by
default in the MSI.

Question:

How should one keep user selected features between major upgrades?

 

Thank you!

 

Martin Kulov

 

Microsoft Regional Director

VS ALM MVP, MCT, INETA Speaker

 

http://www.kulov.net

Phone: (+359) 88 821 3255

 


-
-
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image Editing
and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires
that you delete it without acting upon or copying any of its contents, and
we further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6
7DY, UK.



--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image Editing
and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] remember installed features during major upgrade

2011-06-10 Thread John Cooper
If you use the MajorUpgrade element then it is the default behavior.  You're 
using the older way, so you need to specify it explicitly.

--
John Merryweather Cooper
Jack Henry  Associates, Inc. (Premier Tech, Inc.)
Build  Install Engineer - jXchange
Office:  913-341-3434 x791011
jocoo...@jackhenry.com



-Original Message-
From: Martin Kulov [mailto:mar...@kulov.net] 
Sent: Friday, June 10, 2011 12:27 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] remember installed features during major upgrade

Peter, I own you one!
MigrateFeatures did the trick.

However I need to explicitly set it to Yes, although I am doing major upgrade.

UpgradeVersion Minimum=$(var.RTMVersion)
IncludeMinimum=yes
Maximum=$(var.CurrentVersion)
IncludeMaximum=no
Language=1033
Property=UPGRADEFOUND 
MigrateFeatures=yes /

Removing MigrateFeatures attribute does not enable this behavior by default.
Is this expected?

Thanks a lot!
Martin

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: Friday, June 10, 2011 6:35 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] remember installed features during major upgrade

In the upgrade installer, set UpgradeVersion/@MigrateFeatures=yes

If you use MajorUpgrade, migrate features is the default.

-Original Message-
From: Martin Kulov [mailto:mar...@kulov.net]
Sent: 10 June 2011 16:25
To: wix-users
Subject: [WiX-users] remember installed features during major upgrade

Hi,

 

I am sure this is a commonly asked question, but I cannot find any resource 
explaining this.

 

Scenario:

User has installed the product and changes the default selected features to 
install.

During major upgrade the installer fails to remember what features user has 
selected to install at first place and installs all features as specified by 
default in the MSI.

Question:

How should one keep user selected features between major upgrades?

 

Thank you!

 

Martin Kulov

 

Microsoft Regional Director

VS ALM MVP, MCT, INETA Speaker

 

http://www.kulov.net

Phone: (+359) 88 821 3255

 


-
-
EditLive Enterprise is the world's most technically advanced content authoring 
tool. Experience the power of Track Changes, Inline Image Editing and ensure 
content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.



--
EditLive Enterprise is the world's most technically advanced content authoring 
tool. Experience the power of Track Changes, Inline Image Editing and ensure 
content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
EditLive Enterprise is the world's most technically advanced content authoring 
tool. Experience the power of Track Changes, Inline Image Editing and ensure 
content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.


--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing

Re: [WiX-users] remember installed features during major upgrade

2011-06-10 Thread Martin Kulov
I never expected that there is much simpler one liner solution using
MajorUpdate.
Somehow I missed this element.

http://wix.sourceforge.net/manual-wix3/wix_xsd_majorupgrade.htm
http://www.joyofsetup.com/2010/01/16/major-upgrades-now-easier-than-ever/

Very helpful indeed.

Thanks John!

Martin

-Original Message-
From: John Cooper [mailto:jocoo...@jackhenry.com] 
Sent: Friday, June 10, 2011 9:22 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] remember installed features during major upgrade

If you use the MajorUpgrade element then it is the default behavior.
You're using the older way, so you need to specify it explicitly.

--
John Merryweather Cooper
Jack Henry  Associates, Inc. (Premier Tech, Inc.) Build  Install Engineer
- jXchange
Office:  913-341-3434 x791011
jocoo...@jackhenry.com



-Original Message-
From: Martin Kulov [mailto:mar...@kulov.net]
Sent: Friday, June 10, 2011 12:27 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] remember installed features during major upgrade

Peter, I own you one!
MigrateFeatures did the trick.

However I need to explicitly set it to Yes, although I am doing major
upgrade.

UpgradeVersion Minimum=$(var.RTMVersion)
IncludeMinimum=yes
Maximum=$(var.CurrentVersion)
IncludeMaximum=no
Language=1033
Property=UPGRADEFOUND 
MigrateFeatures=yes /

Removing MigrateFeatures attribute does not enable this behavior by default.
Is this expected?

Thanks a lot!
Martin

-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com]
Sent: Friday, June 10, 2011 6:35 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] remember installed features during major upgrade

In the upgrade installer, set UpgradeVersion/@MigrateFeatures=yes

If you use MajorUpgrade, migrate features is the default.

-Original Message-
From: Martin Kulov [mailto:mar...@kulov.net]
Sent: 10 June 2011 16:25
To: wix-users
Subject: [WiX-users] remember installed features during major upgrade

Hi,

 

I am sure this is a commonly asked question, but I cannot find any resource
explaining this.

 

Scenario:

User has installed the product and changes the default selected features to
install.

During major upgrade the installer fails to remember what features user has
selected to install at first place and installs all features as specified by
default in the MSI.

Question:

How should one keep user selected features between major upgrades?

 

Thank you!

 

Martin Kulov

 

Microsoft Regional Director

VS ALM MVP, MCT, INETA Speaker

 

http://www.kulov.net

Phone: (+359) 88 821 3255

 


-
-
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image Editing
and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires
that you delete it without acting upon or copying any of its contents, and
we further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6
7DY, UK.



--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image Editing
and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image Editing
and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are
intended exclusively for the individual or entity to which it is addressed.
The message, together with any attachment, may contain confidential and/or
privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or
distribution