473,397 Members | 2,099 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.

Multiple .NET on same machine


Hi,
I attempted to load .NET 2.0 on my meain development machine, but it refused
to load as I already have 1.1 installed. The error message is as per
Microsofts installation notes
(http://www.microsoft.com/downloads/d...displaylang=en)

How can I install different .NET versions on the same machine?

Thanks
Tony
Jul 21 '05 #1
4 1446
As I read it, you can't install 2 different versions with different national
languages (US, UK, or French, for example). I had no problem installing 1.0
and 1.1 (both US) on the same machine; in fact, my understanding was that
that is normal practice, so that each .NET program will use the one it was
compiled for. Haven't tried 2.0 yet.

"Logicalman" <to************@com7cast.net34> wrote in message
news:D3**********************************@microsof t.com...

Hi,
I attempted to load .NET 2.0 on my meain development machine, but it
refused
to load as I already have 1.1 installed. The error message is as per
Microsofts installation notes
(http://www.microsoft.com/downloads/d...displaylang=en)

How can I install different .NET versions on the same machine?

Thanks
Tony

Jul 21 '05 #2
Hi Tony,

As Michael said you cannot have to different .Net languages and since 2.0 at the moment exists only in English I suspect you have a non-english version already installed.

You can try to uninstall the .Net 1.1 you have and install the english version of 1.1. You should then be able to install 2.0 as well.

You can get the English version of .Net 1.1 here

http://www.microsoft.com/downloads/d...displaylang=en
On Sun, 08 May 2005 14:14:04 +0200, Logicalman <to************@com7cast.net34> wrote:

Hi,
I attempted to load .NET 2.0 on my meain development machine, but it refused
to load as I already have 1.1 installed. The error message is as per
Microsofts installation notes
(http://www.microsoft.com/downloads/d...displaylang=en)

How can I install different .NET versions on the same machine?

Thanks
Tony


--
Happy coding!
Morten Wennevik [C# MVP]
Jul 21 '05 #3
Thanx to both for your replies, and they make sense. The only problem is, I
believe I installed the english version (being one those myself in the US),
but how can I establish which language version I have actually installed.
I looked to the reg, but only found the following keys under ASP.NET:
LastInstallTime and RootVer: 1.1.4322.0
The subkeys show the following keys:
1.1.4322.0: DefaultDoc;DllFullPath;Mimemap;Path;SupportedExts
MacineAccounts: ASP.NET

None of which (apparently) indicates the language version.
The only other regkey (of any significance) is the
..NETFramework/PendingUpdates/v1.1.4322/NI and NID, which both point to file
ngen.exe.

Any further help would be of great assistance in resolving this.

Thanks again,

Tony

"Morten Wennevik" wrote:
Hi Tony,

As Michael said you cannot have to different .Net languages and since 2.0 at the moment exists only in English I suspect you have a non-english version already installed.

You can try to uninstall the .Net 1.1 you have and install the english version of 1.1. You should then be able to install 2.0 as well.

You can get the English version of .Net 1.1 here

http://www.microsoft.com/downloads/d...displaylang=en
On Sun, 08 May 2005 14:14:04 +0200, Logicalman <to************@com7cast.net34> wrote:

Hi,
I attempted to load .NET 2.0 on my meain development machine, but it refused
to load as I already have 1.1 installed. The error message is as per
Microsofts installation notes
(http://www.microsoft.com/downloads/d...displaylang=en)

How can I install different .NET versions on the same machine?

Thanks
Tony


--
Happy coding!
Morten Wennevik [C# MVP]

Jul 21 '05 #4
I'm afraid I don't know how to detect which version .Net is installed. Removing and installing a known English version shouldn't hurt though.

You could create a simple program that causes an exception. The error message is in the same language as the Framework version.

class MainClass
{
public static void Main()
{
int n = 0;
int o = 1/n;
}
}
--
Happy coding!
Morten Wennevik [C# MVP]
Jul 21 '05 #5

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

Similar topics

13
by: jing_li | last post by:
Hi, you all, I am a newbee for php and I need your help. One of my coworker and I are both developing a webpage for our project using php. We have a copy of the same files in different location...
11
by: Ohaya | last post by:
Hi, I'm trying to understand a situation where ASP seems to be "blocking" of "queuing" requests. This is on a Win2K Advanced Server, with IIS5. I've seen some posts (e.g.,...
0
by: P Srinivasulu | last post by:
When Mysql runs on machine with multiple NIC's. Mysql server takes the IP Address that we specify in the configuration file. This IP Address may or may not be a primary IP Address of that machine....
9
by: Abhishek Srivastava | last post by:
Hello All, In IIS 6.0 We have a concept of worker processes and application pools. As I understand it, we can have multiple worker process per appliction pool. Each worker process is dedicated...
5
by: BPearson | last post by:
Hello I would like to have several sites share a single web.config file. To accomplish this, I would point the root of these sites to the same folder. Is there any reason why I might not want to...
6
by: Steven | last post by:
I have a problem with moving the backup of my database from machine to machine. The size is 17 Gig and my network keeps timing out when I try to ftp it from machine to machine. I have had the...
0
by: Pavan | last post by:
I have my .NET code published in two servers http://server1/<ApplicationName>/Publish.htm and http://server2/<ApplicationName>/Publish.htm, and if i open IE on the client machine and type the link...
11
by: Olie | last post by:
This post is realy to get some opinions on the best way of getting fast comunication between multiple applications. I have scowered the web for imformation on this subject and have just found...
37
by: Allen Browne | last post by:
If you develop for others, you probably have multiple versions of Access installed so you can edit and create MDEs for clients in different versions. This works fine under Windows XP, even with...
25
by: Fred | last post by:
Our server has 8 IPs with 121.232.21.1 as default (example). I wrote a windows service that downloads podcasts (mp3s) off the net. However every time this service runs it clogs down the entire...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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...
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.