How to check .NET Framework version on Windows 10

Some software requires you to install the appropriate version of the .NET Framework to run, here are the two simplest and most common ways to check the .NET Framework version.

1. Check .NET Framework version on Windows 10 with PowerShell

PowerShell provides a lot of features through code and that includes checking the version of a lot of different software. To check the version of the .NET Framework on Windows 10 you will have to do the following:

Step 1: Open MenuStart and search for PowerShell software to open on your computer.

How to check .NET Framework version on Windows 10 Picture 1How to check .NET Framework version on Windows 10 Picture 1

Step 2: Then, copy the following command to paste it into PowerShell software and start the command with Enter.

Get-ChildItem 'HKLM:SOFTWAREMicrosoftNET Framework SetupNDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match '^(?!S)p{L}'} | Select PSChildName, version

How to check .NET Framework version on Windows 10 Picture 2How to check .NET Framework version on Windows 10 Picture 2

Step 3: When the command runs successfully, you will get a lot of different information. In this case we will observe the Full item because this is the version of the .NET Framework installed on the computer.

How to check .NET Framework version on Windows 10 Picture 3How to check .NET Framework version on Windows 10 Picture 3

2. Check .NET Framework version on Windows 10 with RUN

Using the commands in RUN also helps you to see the .NET Framework version on Windows 10 in the most efficient and accurate way. To see the version of .NET Framework on Windows 10 you just need to do a few steps as follows:

Step 1: Open the MenuStart window and enter RUN (Windows + R) to open the Run software on your computer.

How to check .NET Framework version on Windows 10 Picture 4How to check .NET Framework version on Windows 10 Picture 4

Step 2: When the RUN window is open, copy the link below and paste it in the window to open them. This path will help you open the storage folder of the .NET Framework on your computer.

C:WindowsMicrosoft.NETFramework

How to check .NET Framework version on Windows 10 Picture 5How to check .NET Framework version on Windows 10 Picture 5

Step 3: In the FrameWork installation folder, you will have a lot of different folders and choose to open the last folder to track the version on the system.

How to check .NET Framework version on Windows 10 Picture 6How to check .NET Framework version on Windows 10 Picture 6

Step 4: In the folder we just opened, you will find an entry with the name Accessibility.dll and right-click and select Properties.

How to check .NET Framework version on Windows 10 Picture 7How to check .NET Framework version on Windows 10 Picture 7

Step 5: In the Accessibility Properties window, just select the Details tab and follow the Product Version item to know the version of .Net Framework you are using on your computer.

How to check .NET Framework version on Windows 10 Picture 8How to check .NET Framework version on Windows 10 Picture 8

In this article, Tipsmake has shown you how to check the .NET Framework version on Windows 10 in the most detail. Good luck!

5 ★ | 1 Vote