With the release of each new version of .NET Framework, users are bound to install as many framework versions as possible as some applications require .NET Framework version 3.5 and some will piece of work but on version 2.0. Microsoft does not give an easy way to check which versions of .NET Framework are installed on a Windows system.

Nope, you lot can't bank check it from Apps and Features or Programs and Features!

We have already share a software called .NET Framework detector which can list downwardly the frameworks installed and supported by your arrangement. Although it is an easier way to cheque but sometimes information technology becomes difficult to install the software on every system if you are a developer or a network admin.

Table of contents

  • How to check .NET Framework Version Using Command Line
    • 1- Using Windows directory
    • 2- Using WMIC

Windows 10 Version 1803 has .Cyberspace Framework 4.7.2 installed by default. At that place are a few ways we can check which versions of .Net Framework are installed using command line. Allow's go through them one by one.

How to check .NET Framework Version Using Command Line

ane- Using Windows directory

Here we are going to check which .Net Framework is installed on your estimator through control line.

Just open up command Prompt from the starting time and and so type any of the following commands

dir %windir%\Microsoft.Cyberspace\Framework /Advertising

2 Ways to Check .NET Framework Version Using Command Line 1

It volition bear witness the listing of all the directories with all the versions installed along with the latest ones.

Once you lot are in the directory then to cheque which latest version is installed blazon

.\MSBuild.exe -version

For example, if I desire to check the exact version for .Cyberspace Framework 4, I volition run the following commands in sequence:

                  dir %windir%\Microsoft.NET\Framework /Advert                  cd %windir%\Microsoft.NET\Framework\v4.0.30319                  .\MSBuild.exe -version                

two- Using WMIC

You lot can list down the default (latest ane) .Internet Framework being used by the organisation using the WMIC control:

                  wmic production get description | findstr /C:.Cyberspace                

If you lot want a list of all versions installed on your computer, you tin can also use the following command:

                  dir /b %windir%\Microsoft.NET\Framework\v*                                  

This command is basically a rip-off of the showtime method nosotros used above. This will non give you the verbal version number equally you nevertheless have to use the MSBuild control as listed above to get the verbal version number.

Which method do you use for checking the installed .Cyberspace Framework version?

Likewise see: