I do know I can get some Operation system information from "navigator.userAgent" on browser side using JavaScript, and this post discus some details.
My question is when I try to identify whether user is using windows 7 or windows server 2008 I get stuck. Because the windows version code are the same, they are both "windows NT 6.1".
Is there any other way to detect specific windows version on browser side using JavaScript except "navigator.userAgent"?
BTW, the following is my detection code. Currently I can not differentiate window 7 and windows server 2008...
(function (window) {
//Windows detection
var otherOS = "Other OS";
var WindowsDetect = {
Start: function () {
this.OSVer = this.AnalyseOSVer(this.OSData) || otherOS;
if (this.OSVer != otherOS) {
this.AnalyseBit();
}
},
AnalyseOSVer: function (data) {
var targetString = this.DataString.toUpperCase();
if (targetString.indexOf(this.WinStr.toUpperCase() > 0)) {
this.IsWin = true;
for (var i = 0; i < data.length; i++) {
var subString = data[i].SubString.toUpperCase();
if (typeof data[i].SpecialString != "undefined" && targetString.indexOf(data[i].SpecialString.toUpperCase()) < 0) {
continue;
}
if (targetString && targetString.indexOf(subString) > 0) {
return data[i].NickName;
}
}
}
},
AnalyseBit: function () {
var targetString = this.DataString.toUpperCase();
for (var i = 0; i < this._64BitStrs.length; i++) {
var bitStr = this._64BitStrs[i].toUpperCase()
if (targetString.indexOf(bitStr) > 0) {
this.Is64Bit = true;
return;
}
}
},
DataString: window.navigator.userAgent,
_64BitStrs: ["WOW64", "Win64; x64;"],
Is64Bit: false,
WinStr: "Windows NT",
IsWin: false,
OSData: [
{
SubString: "Windows NT 5.1",
NickName: "Windows XP"
},
{
SubString: "Windows NT 5.2 ",
NickName: "Windows Server 2003/Windows XP x64 Edition"
},
{
SubString: "Windows NT 6.0",
NickName: "Windows Vista"
},
{
SubString: "Windows NT 6.1",
NickName: "Windows 7"
},
{
SubString: "Windows NT 6.2",
SpecialString: "ARM",
NickName: "Windows RT"
},
{
SubString: "Windows NT 6.2",
NickName: "Windows 8"
}
]
};
WindowsDetect.Start();
var windowsVer = WindowsDetect.OSVer;
})(window)
window.navigator.userAgents you're being returned, for the 2 OS versions? – Cerbrus Nov 21 '12 at 7:37"WOW64"in the userAgent on your Windows Server, there's no difference... The"WOW64"part has nothing to do with it being Windows Server, though... (It's a flag to show 64bit compatibility) So far for my good ideas. – Cerbrus Nov 21 '12 at 8:13