About 193,000 results
Open links in new tab
  1. How do I find the installed .NET versions? - Stack Overflow

    Oct 14, 2009 · 412 How do I find out which version of .NET is installed? I'm looking for something as simple as java -version that I can type at the command prompt and that tells me the current version …

  2. Is there a command line command for verifying what version of .NET is ...

    However, I need to check if .NET 3.5 has been installed (before the scripts run) using a dos batch file. Is that possible? I know I can check if a file in the C:\WINDOWS\Microsoft.NET\Framework\v3.5 exists, …

  3. How do I detect what .NET Framework versions and service packs are ...

    Oct 14, 2008 · A similar question was asked here, but it was specific to .NET 3.5. Specifically, I'm looking for the following: What is the correct way to determine which .NET Framework versions and …

  4. How to determine if .NET Core is installed - Stack Overflow

    Is there an official method of determining if .NET Core is installed? (And I don't mean the SDK, I want to check a server without the SDK, to determine if it has DotNetCore.1.0.0-WindowsHosting.exe …

  5. How can I check .Net Framework 4.8 Installed on machine

    Feb 21, 2022 · Alternatively, if, for whatever reason, you need to check for the presence of .NET Framework 4.8 after starting your application, you can look at the Release value of the following …

  6. How do I tell if .NET 3.5 SP1 is installed? - Stack Overflow

    Oct 13, 2008 · How can I find out if SP1 has been installed on a server which has .NET 3.5?

  7. Is there an easy way to check the .NET Framework version?

    Something like this should do it. Just grab the value from the registry For .NET 1-4: Framework is the highest installed version, SP is the service pack for that version.

  8. How to find the .NET framework version of a Visual Studio project?

    May 17, 2015 · 54 The simplest way to find the framework version of the current .NET project is: Right-click on the project and go to "Properties." In the first tab, "Application," you can see the target …

  9. PowerShell script to return versions of .NET Framework on a machine?

    Nov 20, 2014 · 417 If you're going to use the registry you have to recurse in order to get the full version for the 4.x Framework. The earlier answers both return the root number on my system for .NET 3.0 …

  10. Best Way To Determine If .NET 3.5 Is Installed - Stack Overflow

    Oct 23, 2009 · The quickest way is to include an assembly from .NET 3.5 and see if it breaks. System.Web.Extensions Is a good assembly that is only included in version 3.5. Also it seems that …