.net framework 1.1 registry entry

R

ray well

hi,

what registry entry would i look up to find out if the .net framework 1.1 is
installed on a machine?

do registry entries know the difference between .net 1.1 and 1.0, my
understanding is that both may exist on a machine ?

i'm also asuming that the framework is installed per machine not per user,
is that correct ?

thanks.,

ray
 
C

Cor Ligthert

Ray,

You can check if this directory exist on the computer and what is in it.
C:\WINDOWS\Microsoft.NET\Framework

I hope this helps?

Cor
 
H

Herfried K. Wagner [MVP]

* "ray well said:
what registry entry would i look up to find out if the .net framework 1.1 is
installed on a machine?

(Translated to English by HKW, written by Thomas Scheidegger [MVP])

Basic information (link to English version included on top of the page):
<URL: http://support.microsoft.com/?kbid=318785>

%windir%\Microsoft.Net\Framework\v1.0.3705\Mscorcfg.dll
1.0.3705.0 = no SP
1.0.3705.209 = with SP1
1.0.3705.288 = with SP2

With .NET 1.1 Sidce-by-Side execution can be used:

Registry
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\
'InstallRoot' REG_SZ

for example (on Windows XP):
"C:\WINDOWS\Microsoft.NET\Framework\"

Version path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\policy\v1.0\
'3705' REG_SZ

If you concatenate both, you will get:
C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705

..NET 1.1 :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\policy\v1.1\
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top