473,748 Members | 2,214 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can I uninstall .NET 1.0 and 1.1 from Windows 2003 Server?

Hello,

Sorry if this is slightly OT, but I reckon there would be folks here who
would know...

I have a Windows 2003 Server box, SP4 and .NET 2.0 installed. Trouble is
that it also has .NET versions 1.0 and 1.1 installed. I would just
ignore them, but occasionally one or two of the web sites on the machine
seem to set themselves to the wrong version, and this causes errors. I
have no idea why or how this happens, but it does happen from time to
time.

I would like to remove 1.0 and 1.1 completely as all my sites use 2.0.
What's the best way to go about this?

TIA

--
Alan Silver
(anything added below this line is nothing to do with me)
Jul 22 '07 #1
6 4182
"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message
news:NP******** ******@nospamth ankyou.spam...
I have a Windows 2003 Server box, SP4
AFAIK, the latest SP for Windows 2003 Server is SP2:
http://technet.microsoft.com/en-gb/w.../bb463273.aspx

Do you mean Windows 2000...?
I would like to remove 1.0 and 1.1 completely as all my sites use 2.0.
What's the best way to go about this?
I must admit I've never tried, as there is absolutely nothing whatever to be
gained by doing this, other than a bit of hard disk space...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jul 22 '07 #2
In article <OX************ **@TK2MSFTNGP05 .phx.gbl>, "Mark Rae [MVP]"
<ma**@markNOSPA Mrae.netwrites
>"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message
news:NP******* *******@nospamt hankyou.spam...
>I have a Windows 2003 Server box, SP4

AFAIK, the latest SP for Windows 2003 Server is SP2:
http://technet.microsoft.com/en-gb/w.../bb463273.aspx

Do you mean Windows 2000...?
No, I meant Windows 2003. I just installed SQL Server on a machine, and
put SP4 for that in. I got the wrong number when typing the SP for
Windows ;-)

So yes, it's Windows 2003 with SP2.
>I would like to remove 1.0 and 1.1 completely as all my sites use
2.0. What's the best way to go about this?

I must admit I've never tried, as there is absolutely nothing whatever
to be gained by doing this, other than a bit of hard disk space...
Well, as I explained, I *do* have something to gain, namely a lack of
errors caused by the mysterious version changing gremlin in my machine!

So, do you know a way of doing it? Only 2.0 shows up in the list of
things to uninstall, presumably as 1.0 and 1.1 came with the OS.

--
Alan Silver
(anything added below this line is nothing to do with me)
Jul 22 '07 #3
"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message
news:Ho******** ******@nospamth ankyou.spam...
So, do you know a way of doing it? Only 2.0 shows up in the list of things
to uninstall, presumably as 1.0 and 1.1 came with the OS.
I'm sorry, but I don't...

This article might help:
http://forums.microsoft.com/MSDN/Sho...90938&SiteID=1

However, unless this is mega-urgent, you might do well to wait for other
responses...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jul 22 '07 #4
You don't need to physically uninstall them, only unregister them.

drive:\WINDOWS\ Microsoft.NET\F ramework\v1.0.3 705 is only a stub directory.

Its funcionality is disabled in W2K3 and, who knows, maybe you'll find a use
for .Net 1.1 down the line, so you shouldn't uninstall .Net 1.1 physically.

What you can do is run, from a command window in this directory :
drive:\WINDOWS\ Microsoft.NET\F ramework\v1.1.4 322

aspnet_regiis -u

That will unregister .Net 1.1 in IIS, leaving you with
only the .Net Framework 2.0 registered in IIS.

That will, effectively, do what you want to do.

If you feel the need to confirm this, run

aspnet_regiis -lv

*before* you run the aspnet_regiis -u command and *after* you run the aspnet_regiis -u command.

You'll find that, the first time, you have .Net 1.1 registered, but the second time it won't be registered.

Also, after you run that command, you will only be able to see the 2.0.50727
version in the ASP.NET tab in the IIS properties for all your applications,
and all your applications will default to ASP.NET 2.0.

If that's what you want...go ahead and do that.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message news:Ho******** ******@nospamth ankyou.spam...
In article <OX************ **@TK2MSFTNGP05 .phx.gbl>, "Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrites
>>"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message news:NP******** ******@nospamth ankyou.spam...
>>I have a Windows 2003 Server box, SP4

AFAIK, the latest SP for Windows 2003 Server is SP2: http://technet.microsoft.com/en-gb/w.../bb463273.aspx

Do you mean Windows 2000...?

No, I meant Windows 2003. I just installed SQL Server on a machine, and put SP4 for that in. I got the wrong number
when typing the SP for Windows ;-)

So yes, it's Windows 2003 with SP2.
>>I would like to remove 1.0 and 1.1 completely as all my sites use 2.0. What's the best way to go about this?

I must admit I've never tried, as there is absolutely nothing whatever to be gained by doing this, other than a bit of
hard disk space...

Well, as I explained, I *do* have something to gain, namely a lack of errors caused by the mysterious version changing
gremlin in my machine!

So, do you know a way of doing it? Only 2.0 shows up in the list of things to uninstall, presumably as 1.0 and 1.1
came with the OS.

--
Alan Silver
(anything added below this line is nothing to do with me)

Jul 22 '07 #5
In article <eX************ **@TK2MSFTNGP06 .phx.gbl>, "Mark Rae [MVP]"
<ma**@markNOSPA Mrae.netwrites
>"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message
news:Ho******* *******@nospamt hankyou.spam...
>So, do you know a way of doing it? Only 2.0 shows up in the list of
things to uninstall, presumably as 1.0 and 1.1 came with the OS.

I'm sorry, but I don't...

This article might help:
http://forums.microsoft.com/MSDN/Sho...90938&SiteID=1
Thanks, I'll have a look.
>However, unless this is mega-urgent, you might do well to wait for
other responses...
No, it's not urgent. I'm building up a new machine to replace a current
server. It's going to take some time to finish anyway, so I can hang on.

Thanks

--
Alan Silver
(anything added below this line is nothing to do with me)
Jul 22 '07 #6
In article <eN************ **@TK2MSFTNGP06 .phx.gbl>, Juan T. Llibre
<no***********@ nowhere.comwrit es
>You don't need to physically uninstall them, only unregister them.

drive:\WINDOWS \Microsoft.NET\ Framework\v1.0. 3705 is only a stub directory.

Its funcionality is disabled in W2K3 and, who knows, maybe you'll find a use
for .Net 1.1 down the line, so you shouldn't uninstall .Net 1.1 physically.
OK, if I can disable it without uninstalling it, I don't mind. My main
interest is in it not being available to my friendly version-changing
gremlin!

<snip>
>If that's what you want...go ahead and do that.
Can't say I'm desperate to do it, but I can't see any other way around
the problem. I have never found any reports of this bug, and it's so
elusive that it's impossible to track down. Unfortunately, its effects
are fairly serious.

Thanks for the help
>Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
============== =============== =========
"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message
news:Ho******* *******@nospamt hankyou.spam...
>In article <OX************ **@TK2MSFTNGP05 .phx.gbl>, "Mark Rae [MVP]"
<ma**@markNOS PAMrae.netwrite s
>>>"Alan Silver" <al*********@no spam.thanx.inva lidwrote in message
news:NP***** *********@nospa mthankyou.spam. ..

I have a Windows 2003 Server box, SP4

AFAIK, the latest SP for Windows 2003 Server is SP2:
http://technet.microsoft.com/en-gb/w.../bb463273.aspx

Do you mean Windows 2000...?

No, I meant Windows 2003. I just installed SQL Server on a machine,
and put SP4 for that in. I got the wrong number
when typing the SP for Windows ;-)

So yes, it's Windows 2003 with SP2.
>>>I would like to remove 1.0 and 1.1 completely as all my sites use
2.0. What's the best way to go about this?

I must admit I've never tried, as there is absolutely nothing
whatever to be gained by doing this, other than a bit of
hard disk space...

Well, as I explained, I *do* have something to gain, namely a lack of
errors caused by the mysterious version changing
gremlin in my machine!

So, do you know a way of doing it? Only 2.0 shows up in the list of
things to uninstall, presumably as 1.0 and 1.1
came with the OS.

--
Alan Silver
(anything added below this line is nothing to do with me)

--
Alan Silver
(anything added below this line is nothing to do with me)
Jul 22 '07 #7

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

Similar topics

6
24243
by: Matt Frame | last post by:
I wrote a small assembly to test the process of placing it into the Global Assembly Cache but now I cannot remove it. When I hi-light and click delete I get the following: Assembly 'Assembly Name' could not be uninstalled because it is required by other applications. I have signed on as the local administrator, I booted into safe mode and I keep getting this message. Can you only put assemblies into the GAC? I would assume if you...
5
4257
by: Leslie Lim | last post by:
I had link my 4 of workstations to server with MySql. 1 pc of my pc can run a software which can update MsSql perfectly but not others(3 failed). I tried to add System Dsn data source for Control Panel - Odbc data source 32. The pc which working fine with the software function but 3 of the rest not. My pcs running xp and win98 ! Regards. Thanks.
0
399
by: CK Wong | last post by:
When I try to repair, change config, install and uninstall an existing VB.NET 2K3, it gave me the following error in the file vserror71.txt: Visual Basic .NET Standard 2003 - English: ERROR_FILE_NOT_FOUND returned in CRootComponent::Install; could not find file: E:\WINDOWS\Installer\ad839.msi (My Windows is install on the E drive). Where is this ad839.msi and who created it?
0
2768
by: Jan | last post by:
Hello, I'm trying to uninstall VS.NET Trial 2003 but I get this dialog box stating "The Windows Installer package: C:\Program Files\Microsoft Visual Studio .NET 2003 .NET 2003\vs_setup.msi could not be opened. Setup will not continue. OK button below. I did "Add or Remove Programs" but it doesn't work like above statement. How
1
7734
by: Tom | last post by:
Hi, I found that dotnet framework 1.1 cannot run properly on my 2003 server. It cannot recognize .aspx file. However, I cannot reinstall it without uninstall it first. I cannot find it in the Add/Remove program list. So, I can I fix this problem? Thanks
1
1249
by: Bill | last post by:
I deployed an Access 2003 app on a network after using the Developer's extensions. Things are fine except when I try to uninstall the app. I did the install from a temporary network directory which was purged before I could uninstall the app. So all the .msi files were gone. When I try to remove from the "add remove programs" of Win 2000 I get a message that the <appname>.msi file is missing. I tried redeploying the app to reproduce...
5
27703
by: Bryan | last post by:
I am writing a C# program that needs to see if a particular program is installed (it would be listed in the "Add or Remove Programs" list from the Control Panel) and uninstall it. Is there a way to do this?.. Thanks for any help... Bryan
3
10858
by: Satish | last post by:
Hi How can i uninstall ASP.NET 1.1 from windows server 2003 .. i want to have just ASP.NET 1.0 on my server thanks Satish
1
4123
by: resander | last post by:
I need to uninstall DB2 Express on a W2K Server as the evaluation period has expired to reclaim a fair chunk of disk space. The program was not in the list of the Windows Add/Remove Programs in the Control Panel, (but is for Windows XP) nor was there an Uninstall program as part of DB2 menu tree. So, I decided to try uninstall it manually by deleting folders and files and registry entries.
0
8991
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
9552
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
9249
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6796
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6076
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4607
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
4877
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3315
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2215
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.