top of page

How to Check Which .NET Framework version installed on Windows 10 PC

Microsoft .NET Framework is a software development platform developed by Microsoft. Every software Softwares developed using .NET required .net Framework installed in the System to run the application. And when you install a new application developed on .Net on a computer/server, it is sometimes necessary to know in advance which versions and service packs of the .Net Framework are already installed. Windows 10 Version 1903 has .NET Framework 4.7.2 installed by default, here How to check which versions of .NET Framework are installed on your Windows system.

Contents

Microsoft .NET Framework Versions

There are several versions of .NET Framework available, Some are included in some Windows OS by default and all are available to download at Microsoft website as well.

Here is list of all released versions of .NET Framework (Till 22/12/2018):

  1. .NET Framework 1.0 (comes pre-installed in Windows XP)

  2. .NET Framework 1.1 (comes with pre-installed in Windows Server 2003)

  3. .NET Framework 2.0 (comes with pre-installed in Windows Server 2003, 2003 R2, 2008 SP2 and 2008 R2 SP1)

  4. .NET Framework 3.0 (Bundled in Windows Vista and Windows Server 2008 SP2, 2008 R2 SP1)

  5. .NET Framework 3.5 (comes pre-installed in Windows 7, 8/8.1, Windows 10 and Windows Server 2008 R2 SP1)

  6. .NET Framework 4.0

  7. .NET Framework 4.5 (By default installed in Windows 8 and Windows Server 2012)

  8. .NET Framework 4.5.1 (comes with pre-installed in Windows 8.1 and Windows Server 2012 R2)

  9. .NET Framework 4.5.2

  10. .NET Framework 4.6 (comes installed in Windows 10)

  11. .NET Framework 4.6.1 (comes installed in Windows 10 version 1511)

  12. .NET Framework 4.6.2 (comes installed in Windows 10 version 1607 and Windows Server 2016)

  13. .NET Framework 4.7 (comes installed in Windows 10 version 1703)

  14. .NET Framework 4.7.1 (comes installed in Windows 10 version 1709)

  15. .NET Framework 4.7.2 (comes installed in Windows 10 version 1803/1809)

  16. .NET Framework 4.8 was released on 18 April 2019 and the latest Windows 10 version 1903, the May 2019 Update version of the operating system, includes version 4.8 of the .NET Framework already.

Check .NET Framework Version

All versions of the .NET Framework are installed into the folders:

  1. %SystemRoot%\Microsoft.NET\Framework

  2. %SystemRoot%\Microsoft.NET\Framework64

And to display the list of .Net installed versions open this folder Here Each version corresponds to a separate directory with the v characters at the beginning and the version number as the folder name.

Alternatively, you can open the command prompt with administrative privileges and run following command, that display the installed .NET Framework directories (versions).

dir %WINDIR%\Microsoft.Net\Framework\v* /O:-N /B

Check .NET Framework Version

Check .NET Framework version using registry editor

  1. Press Windows + R, type regedit and ok to open the windows registry editor.

  2. Then navigate to the following path :

  3. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP

  4. When you expend NDP subkey you’ll see separate keys for each .NET Framework version installed in your system.

Check .NET Framework version using registry editor

to know more about the installed version, Expend any of them for example when you expend v4 and select full or client you found the following registry parameters:

  1. Install — version installation flag (if equal to 1 – this version of .Net is installed on the computer);

  2. Install Path — the directory where this .Net version is installed;

  3. Release — .Net current release number;

  4. Version — the full version number of .Net Framework.

Check Net framework version with details

Here .NET Framework versions and their associated release DWORD values VersionValue of the Release DWORD.NET Framework 4.5378389.NET Framework 4.5.1 installed with Windows 8.1378675.NET Framework 4.5.1 installed on Windows 8, Windows 7 SP1, or Windows Vista SP2378758.NET Framework 4.5.2379893.NET Framework 4.6 installed with Windows 10393295.NET Framework 4.6 installed on all other Windows OS versions393297.NET Framework 4.6.1 installed on Windows 10394254.NET Framework 4.6.1 installed on all other Windows OS versions394271.NET Framework 4.6.2 installed on Windows 10 Anniversary Update and Windows Server 2016394802.NET Framework 4.6.2 installed on all other Windows OS versions394806.NET Framework 4.7 installed on Windows 10 Creators Update460798.NET Framework 4.7 installed on all other Windows OS versions460805.NET Framework 4.7.1 installed on Windows 10 Fall Creators Update461308.NET Framework 4.7.1 installed on all other Windows OS versions461310.NET Framework 4.7.2 installed on Windows 10 October 2018 Update461814.NET Framework 4.7.2 installed on Windows 10 April 2018 Update461808.NET Framework 4.7.2 installed on Windows 10 Fall Creators Update and earlier OS versions461814

The following example checks the Release value in the registry to determine whether the .NET Framework 4.5 or a later version of the .NET Framework is installed.

Also, read:

Comments


Featured Posts
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page