Home All Groups Group Topic Archive Search About
Author
31 Aug 2006 3:26 AM
John
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

Author
31 Aug 2006 4:32 AM
John
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

Show quoteHide quote
"John" <John@nospam.infovis.co.uk> wrote in message
news:ub3S00KzGHA.1300@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
>
Author
31 Aug 2006 7:39 AM
Vadym Stetsyak
Hello, John!

J> What am I missing?

It seems to me that you have smth wrong in our Upgrade MSI table
( http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/upgrade_table.asp )

Did you changed Package GUID?

What do you use to build your setup package?
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
Author
31 Aug 2006 8:36 AM
John
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

Show quoteHide quote
"Vadym Stetsyak" <vady***@ukr.net> wrote in message
news:edRdABNzGHA.4044@TK2MSFTNGP04.phx.gbl...
> Hello, John!
>
> J> What am I missing?
>
> It seems to me that you have smth wrong in our Upgrade MSI table
> (
> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/upgrade_table.asp )
>
> Did you changed Package GUID?
>
> What do you use to build your setup package?
> --
> Regards, Vadym Stetsyak
> www: http://vadmyst.blogspot.com
Author
31 Aug 2006 10:37 AM
Vadym Stetsyak
Hello, John!

J> Anything 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
Author
31 Aug 2006 8:17 PM
John
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

Show quoteHide quote
"Vadym Stetsyak" <vady***@ukr.net> wrote in message
news:OmA9SkOzGHA.2516@TK2MSFTNGP06.phx.gbl...
> Hello, John!
>
> J> Anything 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
Author
1 Sep 2006 12:49 AM
Phil Wilson
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]

Show quoteHide quote
"John" <John@nospam.infovis.co.uk> wrote in message
news:OXNWMqTzGHA.3880@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" <vady***@ukr.net> wrote in message
> news:OmA9SkOzGHA.2516@TK2MSFTNGP06.phx.gbl...
>> Hello, John!
>>
>> J> Anything 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
>
>
Author
1 Sep 2006 1:04 AM
John
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


Show quoteHide quote
"Phil Wilson" <phil.wil***@wonderware.something.com> wrote in message
news:%23i5k9BWzGHA.1300@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" <John@nospam.infovis.co.uk> wrote in message
> news:OXNWMqTzGHA.3880@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" <vady***@ukr.net> wrote in message
>> news:OmA9SkOzGHA.2516@TK2MSFTNGP06.phx.gbl...
>>> Hello, John!
>>>
>>> J> Anything 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
>>
>>
>
>