You can view what version of .NET Framework you have installed on a given machine, by looking into the Registry Editor, as follows:
For .NET Framework 1 - 4
- In the Start menu, type Run and click the displayed desktop app. The Run window is displayed.
- In the Open box, type
regedit.exe
and click OK. The Registry Editor is displayed.
Note:
You must have administrative credentials to run
regedit.exe
.
- Open the following subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP
.
The installed versions are listed under the NDP subkey. The version number is stored in the Version entry. In the case of .NET Framework 4, the Version entry is located under the Client or the Full subkey under NDP, or under both subkeys.
Note:
The NET Framework Setup folder in the registry does not begin with a period.
For .NET Framework 4.5 and Later
- In the Start menu, type Run and click the displayed desktop app. The Run window is displayed.
- In the Open box, type
regedit.exe
and click OK. The Registry Editor is displayed.
Note:
Administrative credentials are required to run
regedit.exe
- In Registry Editor, open the following subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full
. If the Full subkey is missing, you do not have .NET Framework version 4.5 or later installed on the machine.
`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full`
Note:
The path to the Full subkey includes the Net Framework subkey, rather than .NET Framework.
- Check for a DWORD value named Release. If the Release DWORD exists, .NET Framework version 4.5 or later has been installed on the computer.


The value of the Release DWORD indicates which version of the .NET Framework is installed.
Value of the Release DWORD | .NET Framework Version |
---|---|
378389 | .NET Framework 4.5 |
378675 | .NET Framework 4.5.1 installed with Windows 8.1 or Windows Server 2012 R2 |
378758 | .NET Framework 4.5.1 installed on Windows 8, Windows 7 SP1, or Windows Vista SP2 |
379893 | .NET Framework 4.5.2 |
On Windows 10 systems: 393295 | .NET Framework 4.6 |
On Windows 10 November Update systems: 394254 | .NET Framework 4.6.1 |
On Windows 10 Anniversary Update: 394802 | .NET Framework 4.6.2 |
On Windows 10 Creators Update: 460798 | .NET Framework 4.7 |
Updated 3 years ago