From 7c00f836494070a0ba7857cbb29abeca97b41764 Mon Sep 17 00:00:00 2001 From: Adam Amstrong Date: Tue, 27 Jul 2010 01:51:49 +0000 Subject: [PATCH] detect intel itanium :) git-svn-id: http://www.observium.org/svn/observer/trunk@1491 61d68cd4-352d-0410-923a-c4978735b2b8 --- includes/polling/os/windows.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/polling/os/windows.inc.php b/includes/polling/os/windows.inc.php index d25625f79..f4526e191 100755 --- a/includes/polling/os/windows.inc.php +++ b/includes/polling/os/windows.inc.php @@ -12,6 +12,7 @@ #sysDescr.0 = STRING: Hardware: AMD64 Family 16 Model 8 Stepping 0 AT/AT COMPATIBLE - Software: Windows Version 6.1 (Build 7600 Multiprocessor Free) if(strstr($sysDescr, "x86")) { $hardware = "Generic x86"; } + if(strstr($sysDescr, "ia64")) { $hardware = "Intel Itanium IA64"; } if(strstr($sysDescr, "EM64")) { $hardware = "Intel x64"; } if(strstr($sysDescr, "AMD64")) { $hardware = "AMD x64"; } if(strstr($sysDescr, "Intel64")) { $hardware = "Intel x64"; }