Script Center > Gallery > Hardware > List Basic Computer Information
TechNet Script Center logo

Welcome to the TechNet Script Center Gallery!

Each contribution is licensed to you under a License Agreement by its owner, not Microsoft. Microsoft does not guarantee the contribution or purport to grant rights to it.

List Basic Computer Information

(Microsoft)
VERIFIED AND TESTED BY THE SCRIPT CENTER TEAM
Rate it:
 
 
 
 
 
Script Code
Perl
use Win32::OLE('in');
use constant wbemFlagReturnImmediately => 0x10;
use constant wbemFlagForwardOnly => 0x20;

$computer = ".";
$objWMIService = Win32::OLE->GetObject
    ("winmgmts:\\\\$computer\\root\\CIMV2") or die "WMI connection failed.\n";
$colItems = $objWMIService->ExecQuery
    ("SELECT * FROM Win32_ComputerSystem","WQL",wbemFlagReturnImmediately | wbemFlagForwardOnly);

foreach my $objItem (in $colItems)
{
      print "Admin Password Status: $objItem->{AdminPasswordStatus}\n";
      print "Automatic Reset Boot Option: $objItem->{AutomaticResetBootOption}\n";
      print "Automatic Reset Capability: $objItem->{AutomaticResetCapability}\n";
      print "Boot Option On Limit: $objItem->{BootOptionOnLimit}\n";
      print "Boot Option On WatchDog: $objItem->{BootOptionOnWatchDog}\n";
      print "Boot ROM Supported: $objItem->{BootROMSupported}\n";
      print "Bootup State: $objItem->{BootupState}\n";
      print "Caption: $objItem->{Caption}\n";
      print "Chassis Bootup State: $objItem->{ChassisBootupState}\n";
      print "Creation Class Name: $objItem->{CreationClassName}\n";
      print "Current Time Zone: $objItem->{CurrentTimeZone}\n";
      print "Daylight In Effect: $objItem->{DaylightInEffect}\n";
      print "Description: $objItem->{Description}\n";
      print "Domain: $objItem->{Domain}\n";
      print "Domain Role: $objItem->{DomainRole}\n";
      print "Enable Daylight Savings Time: $objItem->{EnableDaylightSavingsTime}\n";
      print "Front Panel Reset Status: $objItem->{FrontPanelResetStatus}\n";
      print "Infrared Supported: $objItem->{InfraredSupported}\n";
      print "Initial Load Info: " . join(",", (in $objItem->{InitialLoadInfo})) . "\n";
      print "Install Date: $objItem->{InstallDate}\n";
      print "Keyboard Password Status: $objItem->{KeyboardPasswordStatus}\n";
      print "Last Load Info: $objItem->{LastLoadInfo}\n";
      print "Manufacturer: $objItem->{Manufacturer}\n";
      print "Model: $objItem->{Model}\n";
      print "Name: $objItem->{Name}\n";
      print "Name Format: $objItem->{NameFormat}\n";
      print "Network Server Mode Enabled: $objItem->{NetworkServerModeEnabled}\n";
      print "Number Of Processors: $objItem->{NumberOfProcessors}\n";
      print "OEM Logo Bitmap: " . join(",", (in $objItem->{OEMLogoBitmap})) . "\n";
      print "OEM String Array: " . join(",", (in $objItem->{OEMStringArray})) . "\n";
      print "Part Of Domain: $objItem->{PartOfDomain}\n";
      print "Pause After Reset: $objItem->{PauseAfterReset}\n";
      print "Power Management Capabilities: " . join(",", (in $objItem->{PowerManagementCapabilities})) . "\n";
      print "Power Management Supported: $objItem->{PowerManagementSupported}\n";
      print "PowerOn Password Status: $objItem->{PowerOnPasswordStatus}\n";
      print "Power State: $objItem->{PowerState}\n";
      print "Power Supply State: $objItem->{PowerSupplyState}\n";
      print "Primary Owner Contact: $objItem->{PrimaryOwnerContact}\n";
      print "Primary Owner Name: $objItem->{PrimaryOwnerName}\n";
      print "Reset Capability: $objItem->{ResetCapability}\n";
      print "Reset Count: $objItem->{ResetCount}\n";
      print "Reset Limit: $objItem->{ResetLimit}\n";
      print "Roles: " . join(",", (in $objItem->{Roles})) . "\n";
      print "Status: $objItem->{Status}\n";
      print "Support Contact Description: " . join(",", (in $objItem->{SupportContactDescription})) . "\n";
      print "System Startup Delay: $objItem->{SystemStartupDelay}\n";
      print "System Startup Options: " . join(",", (in $objItem->{SystemStartupOptions})) . "\n";
      print "System Startup Setting: $objItem->{SystemStartupSetting}\n";
      print "System Type: $objItem->{SystemType}\n";
      print "Thermal State: $objItem->{ThermalState}\n";
      print "Total Physical Memory: $objItem->{TotalPhysicalMemory}\n";
      print "User Name: $objItem->{UserName}\n";
      print "WakeUp Type: $objItem->{WakeUpType}\n";
      print "Workgroup: $objItem->{Workgroup}\n";
      print "\n";
}
Platforms
Windows Server 2008 R2 No
Windows Server 2008 No
Windows Server 2003 Yes
Windows 7 No
Windows Vista No
Windows XP Yes
Windows 2000 Yes
For online peer support, join The Official Scripting Guys Forum! To provide feedback or report bugs in sample scripts, please start a new discussion on the Discussions tab for this script.
Disclaimer The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.
Be the first to create a discussion.