vote up 4 vote down star
1

Hello,

I was ondering if there is a way I can detect the exact OS version from my browser using PHP/JS/ASP?

I know I can detect the type of OS (Windows XP,Windows Vista,OS X,etc) but I need to detect the exact version: Vista Business, Vista Ultimate, Windows XP Home, Windows XP Pro, etc...

Thanks,

Roy.

flag

Why the hell would you want to do something like that? – svinto Mar 15 at 16:02
2  
To present a download link that matches the user's OS. To record site statistics. To supply CSS specific to the user's browser. To shut you up. – mcandre Aug 18 at 14:42

7 Answers

vote up 7 vote down check

Short answer: You can't.

Long answer:

All you have is the information in the HTTP User-Agent header, which usually contains the OS name and version.

Usually, browsers running on Mac OS and Linux send enough information to identify the exact OS. For example, here's my User-Agent header:

Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.7) Gecko/2009030423 Ubuntu/8.10 (intrepid) Firefox/3.0.7

You can see that I'm running Ubuntu 8.10 Intrepid Ibex.

And here's what Firefox and Safari 4 Beta report on my MacBook Pro:

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.7) Gecko/2009021906 Firefox/3.0.7

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_6; en-us) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16

Windows browsers, on the other hand, usually only report the OS version and not the specific package (Pro, Business, etc.):

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x

link|flag
Maybe its possible via Flash? – Roy Peleg Mar 15 at 15:34
1  
@Roy: maybe, but I wouldn't bet on it. – Can Berk Güder Mar 15 at 15:36
And note that even this isn't foolproof. For example, changing your user-agent string to report something else is trivial in Firefox (download plugin) and almost trivial in IE (registry change). – John Feminella Mar 15 at 15:41
Don't need a foolproof solution, but something which will give me say 90% accuracy. But as things seems not, its not feasible. – Roy Peleg Mar 15 at 16:01
There are even non-browser programs (ftp, download managers) that allow the user to set the browser they will identify themselves as. – jeroen Mar 15 at 16:04
vote up 1 vote down

Ask the user? That's as close as you'll get...

link|flag
vote up 1 vote down

I don't think you'll be able to differentiate different versions of Vista, but you should be able to get the OS from the navigator object's platform property. You'll probably have to parse it, though, or differentiate based on it's contents.

<script type="text/javascript">
   alert( navigator.platform );
</script>

See www.w3schools.com tutorials for an example showing how to get all the navigator's properties.

EDIT:

To get the exact version, you may be able to develop an ActiveX control (Windows only) or Java Applet and use the java.lang.System object to view the current system properties. You may be able to get enough information from the browser for non-Windows systems and use the control only for Windows systems. I haven't tried this, so you'd need to experiment to see if it would work. I have to believe that Microsoft's ActiveX control for Microsoft Update is able to detect the exact system version and installed software for it to work.

link|flag
As you said, this won't help to differentiate the sub versions, but thanks for the snippet :-) – Roy Peleg Mar 15 at 15:59
vote up 2 vote down

You should really try to avoid doing something like that unless it's absolutely necessary for the functionality of the web application.

Be aware that:

Not all requests can come from a client running on windows.

Not all requests can come from a client that supports JavaScript.

The user-agent header may not be present in the request.

What is in the user-agent header may be missleading.

A well designed web application should provide complete content and functionality regardless of what's in the user-agent header of the request or if the client supports javascript or any other clientside extension.

link|flag
Thanks, will keep that in mind. – Roy Peleg Mar 15 at 15:57
vote up 1 vote down

As others have already said, no, not reliably.

That is the reason that for example jquery has switched to a browser-capabilities system (for lack of a better word) instead of a browser-sniffing system for it´s functionalities.

link|flag
vote up 1 vote down

In Classic ASP and ASP.NET use

Request.ServerVariables("HTTP_USER_AGENT")

This works best since it's not interpreted code, this is running on the server.

link|flag
always good to have working code or suggestion for what property to examine – MikeJ Mar 15 at 18:06
vote up 2 vote down

After some googling I found this code and it seems to be working ok,(doesn't detect Unix though)

<?php 
$OSList = array
(
// Match user agent string with operating systems
'Windows 3.11' => 'Win16',
'Windows 95' => '(Windows 95)|(Win95)|(Windows_95)',
'Windows 98' => '(Windows 98)|(Win98)',
'Windows 2000' => '(Windows NT 5.0)|(Windows 2000)',
'Windows XP' => '(Windows NT 5.1)|(Windows XP)',
'Windows Server 2003' => '(Windows NT 5.2)',
'Windows Vista' => '(Windows NT 6.0)',
'Windows 7' => '(Windows NT 7.0)',
'Windows NT 4.0' => '(Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT)',
'Windows ME' => 'Windows ME',
'Open BSD' => 'OpenBSD',
'Sun OS' => 'SunOS',
'Linux' => '(Linux)|(X11)',
'Mac OS' => '(Mac_PowerPC)|(Macintosh)',
'QNX' => 'QNX',
'BeOS' => 'BeOS',
'OS/2' => 'OS/2',
'Search Bot'=>'(nuhk)|(Googlebot)|(Yammybot)|(Openbot)|(Slurp)|(MSNBot)|(Ask Jeeves/Teoma)|(ia_archiver)'
);
// Loop through the array of user agents and matching operating systems
foreach($OSList as $CurrOS=>$Match)
{
// Find a match
if (eregi($Match, $_SERVER['HTTP_USER_AGENT']))
{
// We found the correct match
break;
}
}
// You are using ...
echo "You are using ".$CurrOS;
?>

link|flag
1  
Not really what he wanted to do though is it? :) – willcodejavaforfood Apr 26 at 20:44
This will not detect the exact OS package(say xp home vista ultimate ) of windows – NightCoder Oct 23 at 6:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.