Re: [WiX-users] New file not installed

2011-08-18 Thread Tobias S
 Is this new component in a feature whose state is not being migrated
 correctly by MigrateFeatureStates standard action?

Try to set
MigrateFeatureState=no

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Tobias S
sorry, should be
MigrateFeatures=no

2011/8/18 Tobias S tobias.s1...@gmail.com:
 Is this new component in a feature whose state is not being migrated
 correctly by MigrateFeatureStates standard action?

 Try to set
 MigrateFeatureState=no


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Kurt Jensen
Sounds like you have sequenced RemoveExistingProducts towards the end of
the
execute sequence.

I followed the tutorial

InstallExecuteSequence
  RemoveExistingProducts After=InstallInitialize /
/InstallExecuteSequence

http://wix.tramontana.co.hu/tutorial/upgrades-and-modularization/replacing
-ourselves

Kurt

-Original Message-
From: jjbean [mailto:jonks2...@yahoo.co.uk]
Sent: Wednesday, August 17, 2011 4:24 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] New file not installed

Sounds like you have sequenced RemoveExistingProducts towards the end of
the
execute sequence.
Correct?

What happens if you sequence it early in the sequence so uninstall happens
first? (that _should_ solve the problem)

Is this new component in a feature whose state is not being migrated
correctly by MigrateFeatureStates standard action?



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/New-file-not
-installed-tp6696061p6697454.html
Sent from the wix-users mailing list archive at Nabble.com.

--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Tobias S
see http://wix.sourceforge.net/manual-wix3/wix_xsd_upgradeversion.htm
for description of UpgradeVersion Element.

Default for MigrateFeatures is yes so my recommendation is to overwrite it.


At first glance you should do it in the UpgradeVersion element where
you do the major upgrade:


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




btw:
OnlyDetect=yes
You are normally using this construct for downgrade prevention meaning
when a newer version of product is already installed on system


2011/8/18 Kurt Jensen kurt.jen...@us.ophiropt.com:
MigrateFeatures=no
 I searched WiX and MSDN for documentation and an example.
 -please- explain how to '...set MigrateFeatures=no...'

 Kurt

 -Original Message-
 From: Tobias S [mailto:tobias.s1...@gmail.com]
 Sent: Thursday, August 18, 2011 3:15 AM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] New file not installed

 sorry, should be
 MigrateFeatures=no

 2011/8/18 Tobias S tobias.s1...@gmail.com:
 Is this new component in a feature whose state is not being migrated
 correctly by MigrateFeatureStates standard action?

 Try to set
 MigrateFeatureState=no


 --
 
 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Kurt Jensen
thank you for the instruction

unfortunately this did not fix my problem

Kurt

-Original Message-
From: Tobias S [mailto:tobias.s1...@gmail.com]
Sent: Thursday, August 18, 2011 7:07 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

see http://wix.sourceforge.net/manual-wix3/wix_xsd_upgradeversion.htm
for description of UpgradeVersion Element.

Default for MigrateFeatures is yes so my recommendation is to overwrite
it.


At first glance you should do it in the UpgradeVersion element where
you do the major upgrade:


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




btw:
OnlyDetect=yes
You are normally using this construct for downgrade prevention meaning
when a newer version of product is already installed on system


2011/8/18 Kurt Jensen kurt.jen...@us.ophiropt.com:
MigrateFeatures=no
 I searched WiX and MSDN for documentation and an example.
 -please- explain how to '...set MigrateFeatures=no...'

 Kurt

 -Original Message-
 From: Tobias S [mailto:tobias.s1...@gmail.com]
 Sent: Thursday, August 18, 2011 3:15 AM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] New file not installed

 sorry, should be
 MigrateFeatures=no

 2011/8/18 Tobias S tobias.s1...@gmail.com:
 Is this new component in a feature whose state is not being migrated
 correctly by MigrateFeatureStates standard action?

 Try to set
 MigrateFeatureState=no



--
 
 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--

 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Wilson, Phil
You'll need to post an entire MSI log of the issue and point out the file(s) 
that you believe should get installed but are not. 

Phil Wilson 

-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com] 
Sent: Thursday, August 18, 2011 7:53 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

thank you for the instruction

unfortunately this did not fix my problem

Kurt

-Original Message-
From: Tobias S [mailto:tobias.s1...@gmail.com]
Sent: Thursday, August 18, 2011 7:07 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

see http://wix.sourceforge.net/manual-wix3/wix_xsd_upgradeversion.htm
for description of UpgradeVersion Element.

Default for MigrateFeatures is yes so my recommendation is to overwrite
it.


At first glance you should do it in the UpgradeVersion element where
you do the major upgrade:


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




btw:
OnlyDetect=yes
You are normally using this construct for downgrade prevention meaning
when a newer version of product is already installed on system


2011/8/18 Kurt Jensen kurt.jen...@us.ophiropt.com:
MigrateFeatures=no
 I searched WiX and MSDN for documentation and an example.
 -please- explain how to '...set MigrateFeatures=no...'

 Kurt

 -Original Message-
 From: Tobias S [mailto:tobias.s1...@gmail.com]
 Sent: Thursday, August 18, 2011 3:15 AM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] New file not installed

 sorry, should be
 MigrateFeatures=no

 2011/8/18 Tobias S tobias.s1...@gmail.com:
 Is this new component in a feature whose state is not being migrated
 correctly by MigrateFeatureStates standard action?

 Try to set
 MigrateFeatureState=no



--
 
 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--

 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


*** Confidentiality Notice: This e-mail, including any associated or attached 
files, is intended solely for the individual or entity to which it is 
addressed. This e-mail is confidential and may well also be legally privileged. 
If you have received it in error, you are on notice of its status. Please 
notify the sender immediately by reply e-mail and then delete this message from 
your system. Please do not copy it or use it for any purposes, or disclose its 
contents to any other person. This email comes from a division of the Invensys 
Group, owned by Invensys plc, which is a company registered in England and 
Wales with its registered office at 3rd Floor, 40 Grosvenor Place, London, SW1X 
7AW (Registered number 166023). For a list of European legal entities within 
the Invensys Group, please go to 
http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=77.

You may contact Invensys plc on +44 (0)20 3155 1200

Re: [WiX-users] New file not installed

2011-08-18 Thread Wilson, Phil
Spiricon.Source.Gevicam.UI.dll is not installed; there are a number of things 
wrong here:

=
MSI (c) (CC:18) [10:47:26:095]: Disallowing installation of 
component:{CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3} since the same component with 
higher versioned keyfile exists

MSI (s) (EC:E8) [10:48:21:859]: Executing 
op:FileRemove(,FileName=Spiricon.Source.Gevicam.UI.dll,,ComponentId={3917713E-C01A-431E-A832-8E6F261CDBCE})

MSI (s) (EC:18) [10:48:26:172]: Executing 
op:ComponentRegister(ComponentId={CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3}, 
KeyPath=C:\Program Files\Spiricon\BeamGage 
Standard\Spiricon.Source.Gevicam.UI.dll,
=

The first and last log entries are saying that a file with the same component 
id as Spiricon.Source.Gevicam.UI.dll is already installed with a higher version 
, so it won't install it.

The middle log entry says you're removing Spiricon.Source.Gevicam.UI.dll, and 
note that it has a different component ID.

It looks like you may have a file versioning issue because Windows is deciding 
not to install the new one because a higher versioned one already exists. 
However you also broke the sharing rules somehow because the two 
Spiricon.Source.Gevicam.UI.dlls (in the old and the new inbstall) have 
different component ids.

The story seems to be I'm not installing it because there's a higher version 
already on the system and Nobody's using this Component guid any more so I'm 
going to remove it

Phil Wilson
949-639-1680


-Original Message-
From: jjbean [mailto:jonks2...@yahoo.co.uk]
Sent: Thursday, August 18, 2011 12:42 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] New file not installed

Here's a clue:

MSI (c) (CC:18) [10:47:26:095]: Disallowing installation of component:
{CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3} since the same component with
higher versioned keyfile exists

...
...


MSI (s) (EC:18) [10:48:26:172]: Executing op:
ComponentRegister(ComponentId={CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3},KeyPa
th=C:\Program Files\Spiricon\BeamGage
Standard\Spiricon.Source.Gevicam.UI.dll,State=3,,Disk=1,SharedDllRefCount=
2,BinaryType=0)


SharedDllRefCount is 2, and this is a new dll? You did say that in an
earlier post didn't you?
The new dll should be in a new component with a unique GUID.

The log reads (although I'm probably not 100% accurate) as if you may have
reused an existing wix component to home a new dll. If this is the case, do
not do this.


--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/New-file-not-installed-tp6696061p6700572.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




*** Confidentiality Notice: This e-mail, including any associated or attached 
files, is intended solely for the individual or entity to which it is 
addressed. This e-mail is confidential and may well also be legally privileged. 
If you have received it in error, you are on notice of its status. Please 
notify the sender immediately by reply e-mail and then delete this message from 
your system. Please do not copy it or use it for any purposes, or disclose its 
contents to any other person. This email comes from a division of the Invensys 
Group, owned by Invensys plc, which is a company registered in England and 
Wales with its registered office at 3rd Floor, 40 Grosvenor Place, London, SW1X 
7AW (Registered number 166023). For a list of European legal entities within 
the Invensys Group, please go to 
http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=77.

You may contact Invensys plc on +44 (0)20 3155 1200 or e-mail 
recept...@invensys.com. This e-mail and any attachments thereto may be subject 
to the terms of any agreements between Invensys (and/or its subsidiaries and 
affiliates) and the recipient (and/or its subsidiaries and affiliates).

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Kurt Jensen
Interesting clue.  The GUID and component are being created on-the-fly by
heat, maybe there is a problem. I will look into it.


-Original Message-
From: jjbean [mailto:jonks2...@yahoo.co.uk]
Sent: Thursday, August 18, 2011 1:42 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] New file not installed

Here's a clue:

MSI (c) (CC:18) [10:47:26:095]: Disallowing installation of component:
{CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3} since the same component with
higher versioned keyfile exists

...
...


MSI (s) (EC:18) [10:48:26:172]: Executing op:
ComponentRegister(ComponentId={CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3},KeyPa
th=C:\Program Files\Spiricon\BeamGage
Standard\Spiricon.Source.Gevicam.UI.dll,State=3,,Disk=1,SharedDllRefCount=
2,BinaryType=0)


SharedDllRefCount is 2, and this is a new dll? You did say that in an
earlier post didn't you?
The new dll should be in a new component with a unique GUID.

The log reads (although I'm probably not 100% accurate) as if you may have
reused an existing wix component to home a new dll. If this is the case,
do
not do this.


--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/New-file-not
-installed-tp6696061p6700572.html
Sent from the wix-users mailing list archive at Nabble.com.

--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-18 Thread Kurt Jensen
Thanks all.  I missed the Disallowing installation of component.  That
lead to finding where I had messed up.

Thanks again!

-Original Message-
From: Wilson, Phil [mailto:phil.wil...@invensys.com]
Sent: Thursday, August 18, 2011 2:03 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

Spiricon.Source.Gevicam.UI.dll is not installed; there are a number of
things wrong here:

=
MSI (c) (CC:18) [10:47:26:095]: Disallowing installation of
component:{CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3} since the same component
with higher versioned keyfile exists

MSI (s) (EC:E8) [10:48:21:859]: Executing
op:FileRemove(,FileName=Spiricon.Source.Gevicam.UI.dll,,ComponentId={39177
13E-C01A-431E-A832-8E6F261CDBCE})

MSI (s) (EC:18) [10:48:26:172]: Executing
op:ComponentRegister(ComponentId={CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3},
KeyPath=C:\Program Files\Spiricon\BeamGage
Standard\Spiricon.Source.Gevicam.UI.dll,
=

The first and last log entries are saying that a file with the same
component id as Spiricon.Source.Gevicam.UI.dll is already installed with a
higher version , so it won't install it.

The middle log entry says you're removing Spiricon.Source.Gevicam.UI.dll,
and note that it has a different component ID.

It looks like you may have a file versioning issue because Windows is
deciding not to install the new one because a higher versioned one already
exists. However you also broke the sharing rules somehow because the two
Spiricon.Source.Gevicam.UI.dlls (in the old and the new inbstall) have
different component ids.

The story seems to be I'm not installing it because there's a higher
version already on the system and Nobody's using this Component guid any
more so I'm going to remove it

Phil Wilson
949-639-1680


-Original Message-
From: jjbean [mailto:jonks2...@yahoo.co.uk]
Sent: Thursday, August 18, 2011 12:42 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] New file not installed

Here's a clue:

MSI (c) (CC:18) [10:47:26:095]: Disallowing installation of component:
{CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3} since the same component with
higher versioned keyfile exists

...
...


MSI (s) (EC:18) [10:48:26:172]: Executing op:
ComponentRegister(ComponentId={CA4F7916-B9A9-5D6E-BD7A-98EFFC15AAA3},KeyPa
th=C:\Program Files\Spiricon\BeamGage
Standard\Spiricon.Source.Gevicam.UI.dll,State=3,,Disk=1,SharedDllRefCount=
2,BinaryType=0)


SharedDllRefCount is 2, and this is a new dll? You did say that in an
earlier post didn't you?
The new dll should be in a new component with a unique GUID.

The log reads (although I'm probably not 100% accurate) as if you may have
reused an existing wix component to home a new dll. If this is the case,
do
not do this.


--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/New-file-not
-installed-tp6696061p6700572.html
Sent from the wix-users mailing list archive at Nabble.com.

--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




*** Confidentiality Notice: This e-mail, including any associated or
attached files, is intended solely for the individual or entity to which
it is addressed. This e-mail is confidential and may well also be legally
privileged. If you have received it in error, you are on notice of its
status. Please notify the sender immediately by reply e-mail and then
delete this message from your system. Please do not copy it or use it for
any purposes, or disclose its contents to any other person. This email
comes from a division of the Invensys Group, owned by Invensys plc, which
is a company registered in England and Wales with its registered office at
3rd Floor, 40 Grosvenor Place, London, SW1X 7AW (Registered number
166023). For a list of European legal entities within the Invensys Group,
please go to
http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=
77.

You may contact Invensys plc on +44 (0)20 3155 1200 or e-mail
recept...@invensys.com. This e-mail and any attachments thereto may be
subject to the terms of any agreements between Invensys (and/or its
subsidiaries and affiliates) and the recipient (and/or its subsidiaries
and affiliates).

--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2

[WiX-users] New file not installed

2011-08-17 Thread Kurt Jensen
(not sure of exact terminology here since WiX is a part time task, please
bear with me…)



Have setup our installations to do an upgrade from version to version as
follows:



Upgrade Id=$(var.UpgradeCode)

  UpgradeVersion Minimum=$(var.BGProductVersion)

  IncludeMinimum=no

  OnlyDetect=yes

  Language=1033

  Property=NEWPRODUCTFOUND /



  UpgradeVersion Minimum=5.3.0

  IncludeMinimum=yes

  Maximum=$(var.BGProductVersion)

  IncludeMaximum=no

  Language=1033

  Property=UPGRADEFOUND /



/Upgrade



In upgrading our software from v5.5 to v5.6 we are adding four new files.
Three of the new files are installed, one of the files is not. In the log I
see two RemoveFiles for two of the files, one of which is the missing file.
Later on I see references to all four files – “no binary patches”,
“ComponentRegister”. Nothing that singles out the missing file.



Any ideas what I am missing here?





Kurt Jensen

Senior Software Engineer

Ophir-Spiricon LLC





The True Measure of Laser Performance™
--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-17 Thread Tobias S
somehow difficult to describe with few background information. So just
some thoughts.

Maybe take the Tramontana tutorial as starting point:
http://wix.tramontana.co.hu/tutorial/upgrades-and-modularization. In
general Tramontana seems for me one of the most efficient ways to get
into WiX / MSI.

Are you handling the whole installer as major upgrade ? Check for file
versioning. Did any of the assembly versions decrease ? E.g.
3.100.xx.xx to 3.11.xx.xx


Regards
Tobias


2011/8/17 Kurt Jensen kurt.jen...@us.ophiropt.com:
 (not sure of exact terminology here since WiX is a part time task, please
 bear with me…)



 Have setup our installations to do an upgrade from version to version as
 follows:



    Upgrade Id=$(var.UpgradeCode)

      UpgradeVersion Minimum=$(var.BGProductVersion)

                      IncludeMinimum=no

                      OnlyDetect=yes

                      Language=1033

                      Property=NEWPRODUCTFOUND /



      UpgradeVersion Minimum=5.3.0

                      IncludeMinimum=yes

                      Maximum=$(var.BGProductVersion)

                      IncludeMaximum=no

                      Language=1033

                      Property=UPGRADEFOUND /



    /Upgrade



 In upgrading our software from v5.5 to v5.6 we are adding four new files.
 Three of the new files are installed, one of the files is not. In the log I
 see two RemoveFiles for two of the files, one of which is the missing file.
 Later on I see references to all four files – “no binary patches”,
 “ComponentRegister”. Nothing that singles out the missing file.



 Any ideas what I am missing here?





 Kurt Jensen

 Senior Software Engineer

 Ophir-Spiricon LLC





 The True Measure of Laser Performance™
 --
 Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
 user administration capabilities and model configuration. Take
 the hassle out of deploying and managing Subversion and the
 tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-17 Thread Kurt Jensen
somehow difficult to describe with few background information.
what information do you need?

Maybe take the Tramontana tutorial as starting point:
yes, I am following the tutorial

Are you handling the whole installer as major upgrade ?
yes

Did any of the assembly versions decrease ?
this is a file that did not exist in the previous installation.
there is no previous version.

Kurt

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-17 Thread Chad Petersen
I'm used to Major upgrades removing the previous release(s) so only the
newest major version shows in Add/Remove Programs. But, that probably
won't work if you have OnlyDetect=yes. And maybe that's not what you
want to do.

You might also check a clean install to see if all four files get
installed. If it doesn't work on a clean install then that's probably
the first place to take a look. I'd suppose that is working, just an
idea.

Do these files contain Version information or are they version-less type
of files? Is each file in its own Component?

Just some thinking points.

-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com] 
Sent: Wednesday, August 17, 2011 12:25 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

somehow difficult to describe with few background information.
what information do you need?

Maybe take the Tramontana tutorial as starting point:
yes, I am following the tutorial

Are you handling the whole installer as major upgrade ?
yes

Did any of the assembly versions decrease ?
this is a file that did not exist in the previous installation.
there is no previous version.

Kurt


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-17 Thread Kurt Jensen
 OnlyDetect=yes
???

 You might also check a clean install to see if all four files get
installed.
yes, a clean install works.

 Do these files contain Version information
yes, all files have strong names

 Is each file in its own Component?
yes

Kurt

-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com]
Sent: Wednesday, August 17, 2011 1:51 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

I'm used to Major upgrades removing the previous release(s) so only the
newest major version shows in Add/Remove Programs. But, that probably
won't work if you have OnlyDetect=yes. And maybe that's not what you
want to do.

You might also check a clean install to see if all four files get
installed. If it doesn't work on a clean install then that's probably
the first place to take a look. I'd suppose that is working, just an
idea.

Do these files contain Version information or are they version-less type
of files? Is each file in its own Component?

Just some thinking points.

-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com]
Sent: Wednesday, August 17, 2011 12:25 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

somehow difficult to describe with few background information.
what information do you need?

Maybe take the Tramontana tutorial as starting point:
yes, I am following the tutorial

Are you handling the whole installer as major upgrade ?
yes

Did any of the assembly versions decrease ?
this is a file that did not exist in the previous installation.
there is no previous version.

Kurt


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-17 Thread Chad Petersen
I had a recent situation where a window with no title had the file in
use that I was trying to replace. And the developers on that project
hadn't changed the version so it went like this.

1. MSI detects file in use so schedules a reboot for that to be deleted.
2. MSI does a version check of the file and sees it's the same so
decides it doesn't need to replace anything
3. MSI reboots system and deletes file from step #1 - resulting in no
file

The OnlyDetect=yes says to keep the product it is looking for.
OnlyDetect=no says to not only detect but also remove the prior
version(s).

Are these GAC'ed or WinSxS'ed files? Have their versions all changed? If
not this article might explain it.

http://blogs.msdn.com/b/astebner/archive/2007/02/08/assemblies-may-be-mi
ssing-from-the-gac-or-winsxs-cache-after-an-msi-major-upgrade.aspx


-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com] 
Sent: Wednesday, August 17, 2011 1:20 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

 OnlyDetect=yes
???

 You might also check a clean install to see if all four files get
installed.
yes, a clean install works.

 Do these files contain Version information
yes, all files have strong names

 Is each file in its own Component?
yes

Kurt

-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com]
Sent: Wednesday, August 17, 2011 1:51 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

I'm used to Major upgrades removing the previous release(s) so only the
newest major version shows in Add/Remove Programs. But, that probably
won't work if you have OnlyDetect=yes. And maybe that's not what you
want to do.

You might also check a clean install to see if all four files get
installed. If it doesn't work on a clean install then that's probably
the first place to take a look. I'd suppose that is working, just an
idea.

Do these files contain Version information or are they version-less type
of files? Is each file in its own Component?

Just some thinking points.

-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com]
Sent: Wednesday, August 17, 2011 12:25 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

somehow difficult to describe with few background information.
what information do you need?

Maybe take the Tramontana tutorial as starting point:
yes, I am following the tutorial

Are you handling the whole installer as major upgrade ?
yes

Did any of the assembly versions decrease ?
this is a file that did not exist in the previous installation.
there is no previous version.

Kurt


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] New file not installed

2011-08-17 Thread Kurt Jensen
The OnlyDetect=yes...
ok, thanks. this could bite us... and, no, this is not possible.
the file does not exist in the earlier version so it cannot be in use.

Are these GAC'ed or WinSxS'ed files?
no

what is so weird is that 3 of the new files install just fine, while this
one file does not. and there is nothing in the log that indicates anything
special or different about this one file. it is listed in the same way and
along with the other three.

-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com]
Sent: Wednesday, August 17, 2011 3:06 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

I had a recent situation where a window with no title had the file in
use that I was trying to replace. And the developers on that project
hadn't changed the version so it went like this.

1. MSI detects file in use so schedules a reboot for that to be deleted.
2. MSI does a version check of the file and sees it's the same so
decides it doesn't need to replace anything
3. MSI reboots system and deletes file from step #1 - resulting in no
file

The OnlyDetect=yes says to keep the product it is looking for.
OnlyDetect=no says to not only detect but also remove the prior
version(s).

Are these GAC'ed or WinSxS'ed files? Have their versions all changed? If
not this article might explain it.

http://blogs.msdn.com/b/astebner/archive/2007/02/08/assemblies-may-be-mi
ssing-from-the-gac-or-winsxs-cache-after-an-msi-major-upgrade.aspx


-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com]
Sent: Wednesday, August 17, 2011 1:20 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

 OnlyDetect=yes
???

 You might also check a clean install to see if all four files get
installed.
yes, a clean install works.

 Do these files contain Version information
yes, all files have strong names

 Is each file in its own Component?
yes

Kurt

-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com]
Sent: Wednesday, August 17, 2011 1:51 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

I'm used to Major upgrades removing the previous release(s) so only the
newest major version shows in Add/Remove Programs. But, that probably
won't work if you have OnlyDetect=yes. And maybe that's not what you
want to do.

You might also check a clean install to see if all four files get
installed. If it doesn't work on a clean install then that's probably
the first place to take a look. I'd suppose that is working, just an
idea.

Do these files contain Version information or are they version-less type
of files? Is each file in its own Component?

Just some thinking points.

-Original Message-
From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com]
Sent: Wednesday, August 17, 2011 12:25 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] New file not installed

somehow difficult to describe with few background information.
what information do you need?

Maybe take the Tramontana tutorial as starting point:
yes, I am following the tutorial

Are you handling the whole installer as major upgrade ?
yes

Did any of the assembly versions decrease ?
this is a file that did not exist in the previous installation.
there is no previous version.

Kurt


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--

Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configuration. Take
the hassle out of deploying and managing Subversion and the
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Re: [WiX-users] New file not installed

2011-08-17 Thread jjbean
Sounds like you have sequenced RemoveExistingProducts towards the end of the
execute sequence.
Correct?

What happens if you sequence it early in the sequence so uninstall happens
first? (that _should_ solve the problem)

Is this new component in a feature whose state is not being migrated
correctly by MigrateFeatureStates standard action?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/New-file-not-installed-tp6696061p6697454.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users