What version of dot net (.Net) am I running?


Here are a couple steps to find what version of .Net you have on your machine.
This is for Windows 10…

From the command prompt type

reg query “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP”

This will query the registry and give you a listing of all .Net versions on your machine.  On my machine I get something like this.

These are all the version of .Net you have.  If you modify the command above slightly you can drill down into each of these to get more information.

For Example: reg query “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0”

Returns details on this version which looks like this;

Handy isn’t it..?

Recent Content