473,397 Members | 1,949 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Version conflict

Hi

I have version 1 of an app already installed on client computers. Now I want
to install version 2 of the app while keeping version 1 for now so client
can test version 2 while keep on using version 1 for now. When I try to
install version 2 I get the message "Another version of the product is
installed...". How can I get round this?

Thanks

Regards
Aug 31 '06 #1
7 1377
I have now changed the product id of the app and recreated the set-up. This
time it goes past the stage where it gave message last time but now it says
'Unable to install because a newer version of this product is already
installed.' which is strange as I have just compiled this latest version and
it should be the newest.

What am I missing?

Thanks

Regards

"John" <Jo**@nospam.infovis.co.ukwrote in message
news:ub**************@TK2MSFTNGP05.phx.gbl...
Hi

I have version 1 of an app already installed on client computers. Now I
want to install version 2 of the app while keeping version 1 for now so
client can test version 2 while keep on using version 1 for now. When I
try to install version 2 I get the message "Another version of the product
is installed...". How can I get round this?

Thanks

Regards

Aug 31 '06 #2
Hello, John!

JWhat am I missing?

It seems to me that you have smth wrong in our Upgrade MSI table
( http://msdn.microsoft.com/library/de...rade_table.asp )

Did you changed Package GUID?

What do you use to build your setup package?
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
Aug 31 '06 #3
I did change the package id after my post and before second post. I am using
vs2003 set-up project to create set-up msi.

Anything I can do from here?

Thanks

Regards

"Vadym Stetsyak" <va*****@ukr.netwrote in message
news:ed**************@TK2MSFTNGP04.phx.gbl...
Hello, John!

JWhat am I missing?

It seems to me that you have smth wrong in our Upgrade MSI table
(
http://msdn.microsoft.com/library/de...rade_table.asp )

Did you changed Package GUID?

What do you use to build your setup package?
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com

Aug 31 '06 #4
Hello, John!

JAnything I can do from here?

Just a hint you can disable flags in setup project properties.
Set to false DetectNewerInstalledVersion

If you want to have more control over install process, then setup project is not
appropriate for you.

As an altrenative you can try using WiX
( http://www.tramontana.co.hu/wix/ )
( http://wix.sourceforge.net )

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
Aug 31 '06 #5
I am worried that forcefully installing version 2 could effect working of
version 1. How can .net be convinced that version 1 & 2 are completely
different apps and should not be related to each other?

Thanks

Regards

"Vadym Stetsyak" <va*****@ukr.netwrote in message
news:Om**************@TK2MSFTNGP06.phx.gbl...
Hello, John!

JAnything I can do from here?

Just a hint you can disable flags in setup project properties.
Set to false DetectNewerInstalledVersion

If you want to have more control over install process, then setup project
is not
appropriate for you.

As an altrenative you can try using WiX
( http://www.tramontana.co.hu/wix/ )
( http://wix.sourceforge.net )

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com

Aug 31 '06 #6
You've built a separate setup so that MSI sees both setups as different
products, but it's up to you to make sure that you can run two versions of
the app on the same system. The tricky areas will be items that are shared
or should be unique, such as services, folders used by the running app,
identical assemblies in the GAC, identical shared files in other places.
--
Phil Wilson
[Microsoft MVP Windows Installer]

"John" <Jo**@nospam.infovis.co.ukwrote in message
news:OX**************@TK2MSFTNGP06.phx.gbl...
>I am worried that forcefully installing version 2 could effect working of
version 1. How can .net be convinced that version 1 & 2 are completely
different apps and should not be related to each other?

Thanks

Regards

"Vadym Stetsyak" <va*****@ukr.netwrote in message
news:Om**************@TK2MSFTNGP06.phx.gbl...
>Hello, John!

JAnything I can do from here?

Just a hint you can disable flags in setup project properties.
Set to false DetectNewerInstalledVersion

If you want to have more control over install process, then setup project
is not
appropriate for you.

As an altrenative you can try using WiX
( http://www.tramontana.co.hu/wix/ )
( http://wix.sourceforge.net )

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com


Sep 1 '06 #7
Any information available somewhere on how to do that? There must be others
in the same situation wanting to deliver more than one app from the same
base code (basically different generations of the same app).

There are no common services or folders in my case though.

Thanks

Regards
"Phil Wilson" <ph*********@wonderware.something.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
You've built a separate setup so that MSI sees both setups as different
products, but it's up to you to make sure that you can run two versions of
the app on the same system. The tricky areas will be items that are
shared or should be unique, such as services, folders used by the running
app, identical assemblies in the GAC, identical shared files in other
places.
--
Phil Wilson
[Microsoft MVP Windows Installer]

"John" <Jo**@nospam.infovis.co.ukwrote in message
news:OX**************@TK2MSFTNGP06.phx.gbl...
>>I am worried that forcefully installing version 2 could effect working of
version 1. How can .net be convinced that version 1 & 2 are completely
different apps and should not be related to each other?

Thanks

Regards

"Vadym Stetsyak" <va*****@ukr.netwrote in message
news:Om**************@TK2MSFTNGP06.phx.gbl...
>>Hello, John!

JAnything I can do from here?

Just a hint you can disable flags in setup project properties.
Set to false DetectNewerInstalledVersion

If you want to have more control over install process, then setup
project is not
appropriate for you.

As an altrenative you can try using WiX
( http://www.tramontana.co.hu/wix/ )
( http://wix.sourceforge.net )

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com



Sep 1 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Squirrel | last post by:
I've developed an Access 2002 database which will be deployed with the backend on a server and frontend on the users' PCs. I've now been advised that new employees will be given laptops with...
70
by: Neil Ginsberg | last post by:
Does anyone know if a new version of Access is due to come out anytime soon? Thanks, Neil
0
by: vb | last post by:
Hi, Sorry, I am new to C#, so this can be a very simple question. I am using some of DevExpress components in my application.My References in the Solution(for DevExpress) are: DevExpress.Data;...
0
by: davec426913 | last post by:
I am having trouble with a reference in my VB.NET application. The code I am using is straight from MSDN:...
2
by: monomaniac21 | last post by:
Hi all we are thinking of using a version control system at work. I was wondering what are some of the issues we should take into consideration when deciding upon which one to use? and which...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.