2009-09-07 11:07:59 +00:00
|
|
|
<?php
|
2007-04-03 14:10:23 +00:00
|
|
|
|
2008-11-26 17:58:47 +00:00
|
|
|
if(strstr($sysDescr, "x86")) { $hardware = "Generic x86"; }
|
2009-11-07 02:30:38 +00:00
|
|
|
if(strstr($sysDescr, "AMD64")) { $hardware = "Generic x64"; }
|
2010-01-25 23:34:18 +00:00
|
|
|
if(strstr($sysDescr, "Windows 2000 Version 5.1")) { $version = "XP"; }
|
2008-11-26 17:58:47 +00:00
|
|
|
if(strstr($sysDescr, "Windows Version 5.2")) { $version = "2003 Server"; }
|
2009-11-07 02:30:38 +00:00
|
|
|
if(strstr($sysDescr, "Windows Version 6.1")) { $version = "Windows 7"; }
|
2008-11-26 17:58:47 +00:00
|
|
|
if(strstr($sysDescr, "Uniprocessor Free")) { $features = "Uniprocessor"; }
|
|
|
|
if(strstr($sysDescr, "Multiprocessor Free")) { $features = "Multiprocessor"; }
|
2007-04-03 14:10:23 +00:00
|
|
|
|
2009-11-09 15:52:04 +00:00
|
|
|
include("ucd-mib.inc.php");
|
|
|
|
include("hr-mib.inc.php");
|
2007-04-03 14:10:23 +00:00
|
|
|
|
|
|
|
?>
|