/**
* Script: CPUIdent.js
* Purpose: Displays the CPU Identifier stored in Registry
* Author: Daren Thiel
* Date: 15 January 1999
* Web: http://www.winscripter.com
* Note: Rename this file CPUIdent.js
**/
/* Create Shell Object */
ws = WScript.CreateObject( "WScript.Shell" );
/* Read the Registry and store result in variable */
var regkey = "HKLM\\Hardware\\Description\\System\\CentralProcessor\\0\\VendorIdentifier";
var cpu = ws.RegRead( regkey );
/* Tell the user */
WScript.Echo( cpu );