The version-detection tag has no wiki summary.
6
votes
1answer
85 views
How to detect current IIS version with PHP?
My approach now is …
if ( preg_match( '~IIS/(\d+\.\d+)~', $_SERVER['SERVER_SOFTWARE'], $matches ) )
$version = $matches[1];
… but I have no experience with IIS, and after searching for a while ...
1
vote
0answers
52 views
Variant anonymous function definitions based on PHP version?
The following fails with a parse error on PHP 5.2.X:
if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
$greater = function($left, $right) {
return $left > $right;
}
}
else {
$greater ...
1
vote
0answers
3k views
Detecting Java version (runnable in browser) with JavaScript?
I was checking this code provided by Sun that can retrieve a list of the Java Runtime Environments installed on the machine. Here's the code formatted and with some functions removed so it's easier to ...
7
votes
4answers
2k 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
771 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) ...
19
votes
3answers
10k views
Browser version detect using GWT?
Is there GWT api that will tell me which browser version it detected?
I've found a flaw with IE7's regex handling and need to code around some tricky String.matches() expressions.
2
votes
2answers
551 views
Detection of browser version in WPF
Is it possible to find out in what browser version a browser hosted application (XBAP) runs (eg. IE6, IE7 or IE8)? I want to find out the browser version from within the XBAP.
0
votes
1answer
1k views
Detect Installed Software Using Wix
Just to start I'm fairly new to wix. I am currently using version 3.0 with the Votive Visual Studio plug in.
I know the upgrade code of an existing software package. I need to be able to detect the ...
1
vote
4answers
13k views
Get browser version of IE using Javascript
I am using the following code to get the version of IE in a system.
var browser = navigator.appName;
var b_version = navigator.appVersion;
var version = parseFloat(b_version);
...
2
votes
1answer
986 views
Get Browser's Java Plugin Version?
Question
Is it possible to get the version of the Java Plugin being used by the web browser, either through Javascript, or within a Java applet being run by the plugin?
Background
I'd like to run a ...
1
vote
3answers
2k views
Detect Internet Explorer Version using VB6
I'm updating a legacy app and it has some functionality that detects the version of Internet Explorer that's installed, just for display and error reporting not because any components are required. ...
2
votes
4answers
773 views
How to detect specific Delphi builds?
This is related to another Delphi-version question but still different;
I'm looking for a way to detect the service-pack (or build number) of the Delphi compiler that's compiling my code. The ...
0
votes
2answers
427 views
How do I detect Windows Small Business Server operating system?
My employer is considering releasing two versions of the same Windows Server-based product; a cheaper "small business" edition and a more expensive "enterprise" edition.
There will be a number of ...
22
votes
3answers
3k views
Complete list of defines for Delphi versions
Does anyone know of a good place where I can find the complete list of version defines for all the Delphi versions, right up to Delphi 2009?
1
vote
1answer
120 views
How do I determine which platform version is required?
This frequently comes up: I've built software, and possibly used some new language / platform / standard library features that are available on some version (say, Java 1.6.10 or PHP 5.2) upwards, but ...
3
votes
12answers
9k views
How can I detect the Java runtime installed on a client from an ASP .NET website?
I have an ASP .NET website that hosts a Java applet. The Java applet requires version 1.6 Update 11 of the Java runtime.
How can I detect that a client has the appropriate runtime installed so that I ...
4
votes
4answers
6k 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 ...
2
votes
3answers
2k views
Not Detecting Flash 10: World's Most Widespread Web Video Bug?
Here's the Question: What is the best way to make sure that your requirement for Flash Version "x" on a site will properly detect presence of later-version Adobe Flash Player Version "10" (or "1y" for ...
168
votes
10answers
165k 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
5k 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 ...