473,805 Members | 2,141 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1395
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.in fovis.co.ukwrot e in message
news:ub******** ******@TK2MSFTN GP05.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.ne twrote in message
news:ed******** ******@TK2MSFTN GP04.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 DetectNewerInst alledVersion

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.ne twrote in message
news:Om******** ******@TK2MSFTN GP06.phx.gbl...
Hello, John!

JAnything I can do from here?

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

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.in fovis.co.ukwrot e in message
news:OX******** ******@TK2MSFTN GP06.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.ne twrote in message
news:Om******** ******@TK2MSFTN GP06.phx.gbl...
>Hello, John!

JAnything I can do from here?

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

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*********@wo nderware.someth ing.comwrote in message
news:%2******** ********@TK2MSF TNGP05.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.in fovis.co.ukwrot e in message
news:OX******** ******@TK2MSFTN GP06.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.ne twrote in message
news:Om******* *******@TK2MSFT NGP06.phx.gbl.. .
>>Hello, John!

JAnything I can do from here?

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

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
2818
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 Access 2003 installed and that the server software will not be updated. Also some of the users are using Access 2000 and some Access 2002. My question is - will this work? There is a lack of IT support in this department - they've contracted with...
70
4129
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
1639
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; DevExpress.Utils; DevExpress.XtraBars; DevExpress.XtraEditors;
0
2084
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: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmsrvsdk/htm/configuringbrdcstpubpt.asp Currently, it is barebones until I get this resolved. <code> Imports Microsoft.WindowsMediaServices.Interop Imports System.Runtime.InteropServices
2
1984
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 one/s you would recommend? thanks marc
0
9718
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9596
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10613
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10363
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9186
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5544
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5678
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3846
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.