How to check the version of the dotnet framework installed.

M

Mike Peterson

I'm trying to develop an install kit for an application
that requires an already installed instance of the dotnet
framework. What is the best way to determine if/what is
already installed? Registry setting - if so which one?
Individual file - if so which one?
 
D

Dino Chiesa [MSFT]

FAQ

How can I verify if the .NET Framework has been installed?
Two ways:
1. check the Windows Registry for
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\InstallRoot
2. check for a local directory like
%windir%\Microsoft.NET\Framework\<version>
where <version> is
v1.1.4322 - for .NET Framework v1.1
v1.0.3705 - for .NET Framework v1.0
 
Joined
Dec 29, 2008
Messages
1
Reaction score
0
You can also try to check

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework

and

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup

==============================================================
EyesBoard - A cool software keyboard which looks and behaves like a physical keyboard
http://www.plazalogic.com/eyesboard/
==============================================================
 

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