edit code
Posted: Fri May 13, 2005 1:12 am
My code
I want to check serial number for bios ,harddisk,cpu. How i write to code?
d11wtq | Please read the sticky about posting code in the forums
Code: Select all
<?php
$shell = new COM("WScript.Shell") or die("Requires Windows Scripting Host");
$key="HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\SystemBiosDate";
$t = $shell->RegRead($key);
print "BIOS date:$t<br/>\n";
?>d11wtq | Please read the sticky about posting code in the forums