How can I identify .net framework version on my system?

AudreyPick

New member
Hello, How can I identify .net framework version installed on Windows quickly? Is there a command or registry method that’s easiest? Thanks!
 
You may use the registry to determine the version of the Microsoft.NET Framework installed in your system. Click on the Win + R and then write regedit and then navigate to:
HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/ NET Framework Setup/NDP/v 4/Full.
Find Release value and compare it to the version list of Microsoft.
 
To identify your installed version of .NET Framework on Windows, open the Run dialog (Win + R), type “regedit,” and navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP. Check the “Version” or “Release” values. You can also use Command Prompt with dotnet --info or view installed programs in Control Panel for quick details.
 
Back
Top