Tagged Questions
100
votes
9answers
78k views
How to detect what .NET Framework versions and service packs are installed?
A similar question was asked here, but 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 service packs are ...
10
votes
4answers
3k views
Determine highest .NET Framework version
I need to determine the highest .NET framework version installed on a desktop machine from C\C++ code. Looks like I can iterate the folders under %systemroot%\Microsoft.NET\Framework, but that seems ...
6
votes
4answers
603 views
Detecting .NET version without UserAgent string
Most modern browsers (Chrome 10, Firefox 4, IE9) are all shortening their UserAgent identifiers. As a result, the supported .NET versions are no longer sent to the server.
In order to allow our ...
4
votes
2answers
404 views
Detect .net framework version AND REVISION from Internet Explorer
I know we can detect the major version and SP version from user-agent string.
However, I need to distinguish between Revisions as well, i.e.
2.0 RTM (x86) 2.0.50727.42
2.0 RTM (Vista) ...
3
votes
3answers
4k views
How to determine installed IIS version
What would the preferred way of programmatically determining which the currently installed version of Microsoft Internet Information Services (IIS) is?
I know that it can be found by looking at the ...