21
.NET framework

Find out Which Versions of the .NET Framework are Installed on a PC

Embed Size (px)

Citation preview

Page 1: Find out Which Versions of the .NET Framework are Installed on a PC

.NET framework

Page 2: Find out Which Versions of the .NET Framework are Installed on a PC

.NET framework

• .NET Framework (pronounced dot net) is a software framework developed by Microsoft that runs primarily on Microsoft Windows. It includes a large class library known as Framework Class Library (FCL) and provides language interoperability (each language can use code written in other languages) across several programming languages. Programs written for .NET Framework execute in a software environment (in contrast to a hardware environment) known as Common Language Runtime (CLR), an application virtual machine that provides services such as security, memory management, and exception handling. (As such, computer code written using .NET Framework is called "managed code".) FCL and CLR together constitute .NET Framework.

Page 3: Find out Which Versions of the .NET Framework are Installed on a PC

How to find which .NET framework you are using??

Page 4: Find out Which Versions of the .NET Framework are Installed on a PC

Method 1

Page 5: Find out Which Versions of the .NET Framework are Installed on a PC

Step 1:-

• Just click the Search Windows taskbar and type “Run”.• You will see new dialogue box will open • Then type :- regedit.exe• Then press ok button.

Page 6: Find out Which Versions of the .NET Framework are Installed on a PC
Page 7: Find out Which Versions of the .NET Framework are Installed on a PC

Step 2:-• After clicking ok button you will see new dialogue box.• “Do you want to allow this app to make changes to your device?”• For more details click “Show more details”• Click Yes and then you will see new window

(you will see new window given below)

Page 8: Find out Which Versions of the .NET Framework are Installed on a PC
Page 9: Find out Which Versions of the .NET Framework are Installed on a PC

open the following sub key;HKEL_LOCAL_MACHINE

Page 10: Find out Which Versions of the .NET Framework are Installed on a PC

open the following sub key;HKEL_LOCAL_MACHINE\SOFTWARE

Page 11: Find out Which Versions of the .NET Framework are Installed on a PC

open the following sub key;HKEL_LOCAL_MACHINE\SOFTWARE\Microsoft

Page 12: Find out Which Versions of the .NET Framework are Installed on a PC

open the following sub key;HKEL_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup

Page 13: Find out Which Versions of the .NET Framework are Installed on a PC

open the following sub key;HKEL_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP

Page 14: Find out Which Versions of the .NET Framework are Installed on a PC

HKEL_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4

Page 15: Find out Which Versions of the .NET Framework are Installed on a PC

HKEL_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full

Page 16: Find out Which Versions of the .NET Framework are Installed on a PC

FILE NAME:-"Release” (you can see 394802)

Page 17: Find out Which Versions of the .NET Framework are Installed on a PC
Page 18: Find out Which Versions of the .NET Framework are Installed on a PC

Method 2

Page 19: Find out Which Versions of the .NET Framework are Installed on a PC

2. Use the command prompt

• Open the command prompt and enter: dir %WINDIR%\Microsoft.Net\Framework\v*

Page 20: Find out Which Versions of the .NET Framework are Installed on a PC

• A list of installed versions except 4.5 will be displayed. .NET Framework 4.5 is stored in a sub-directory of 4.0.

Page 21: Find out Which Versions of the .NET Framework are Installed on a PC

Thank you