178k views
3 votes
How to tell what version of .net framework is installed

User PoVa
by
7.8k points

1 Answer

0 votes

Final answer:

To determine your installed .NET Framework version, you can use the Windows registry or the command line. The registry requires navigating to 'software\Microsoft\NET Framework Setup\NDP', while the command line method involves a simple directory listing command in the Framework directory.

Step-by-step explanation:

To find out which version of the .NET Framework is installed on a Windows computer, you can use a variety of methods. An easy approach is to check the registry or use the command line. Here's a quick guide for both methods:

  1. Open the 'Run' dialog box by pressing Windows key + R.
  2. Type 'regedit' and press Enter to open the Registry Editor.
  3. Navigate to the following registry path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP
  4. The versions are listed under the NDP folder, where each subfolder represents a different version of .NET Framework installed on your system.

  1. Open Command Prompt by typing 'cmd' in the search bar and pressing Enter.
  2. Type the command 'dir %WINDIR%\Microsoft.Net\Framework\v* /O:-N /B' and press Enter.
  3. The installed versions will be displayed in descending order.

Remember that multiple versions of the .NET Framework can be installed side by side, so it's common to see more than one version listed.

User ZeroWorks
by
7.6k points