Script Center > Gallery > Hardware > List Cache Memory 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 Cache Memory 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_CacheMemory","WQL",wbemFlagReturnImmediately | wbemFlagForwardOnly);

foreach my $objItem (in $colItems)
{
      print "Access: $objItem->{Access}\n";
      print "Additional Error Data: " . join(",", (in $objItem->{AdditionalErrorData})) . "\n";
      print "Associativity: $objItem->{Associativity}\n";
      print "Availability: $objItem->{Availability}\n";
      print "Block Size: $objItem->{BlockSize}\n";
      print "Cache Speed: $objItem->{CacheSpeed}\n";
      print "Cache Type: $objItem->{CacheType}\n";
      print "Caption: $objItem->{Caption}\n";
      print "Config Manager Error Code: $objItem->{ConfigManagerErrorCode}\n";
      print "Config Manager User Config: $objItem->{ConfigManagerUserConfig}\n";
      print "Correctable Error: $objItem->{CorrectableError}\n";
      print "Creation Class Name: $objItem->{CreationClassName}\n";
      print "Current SRAM: " . join(",", (in $objItem->{CurrentSRAM})) . "\n";
      print "Description: $objItem->{Description}\n";
      print "Device ID: $objItem->{DeviceID}\n";
      print "Ending Address: $objItem->{EndingAddress}\n";
      print "Error Access: $objItem->{ErrorAccess}\n";
      print "Error Address: $objItem->{ErrorAddress}\n";
      print "Error Cleared: $objItem->{ErrorCleared}\n";
      print "Error Correct Type: $objItem->{ErrorCorrectType}\n";
      print "Error Data: " . join(",", (in $objItem->{ErrorData})) . "\n";
      print "Error Data Order: $objItem->{ErrorDataOrder}\n";
      print "Error Description: $objItem->{ErrorDescription}\n";
      print "Error Info: $objItem->{ErrorInfo}\n";
      print "Error Methodology: $objItem->{ErrorMethodology}\n";
      print "Error Resolution: $objItem->{ErrorResolution}\n";
      print "Error Time: $objItem->{ErrorTime}\n";
      print "Error Transfer Size: $objItem->{ErrorTransferSize}\n";
      print "Flush Timer: $objItem->{FlushTimer}\n";
      print "Install Date: $objItem->{InstallDate}\n";
      print "Installed Size: $objItem->{InstalledSize}\n";
      print "Last Error Code: $objItem->{LastErrorCode}\n";
      print "Level: $objItem->{Level}\n";
      print "Line Size: $objItem->{LineSize}\n";
      print "Location: $objItem->{Location}\n";
      print "Max Cache Size: $objItem->{MaxCacheSize}\n";
      print "Name: $objItem->{Name}\n";
      print "Number Of Blocks: $objItem->{NumberOfBlocks}\n";
      print "Other Error Description: $objItem->{OtherErrorDescription}\n";
      print "PNP Device ID: $objItem->{PNPDeviceID}\n";
      print "Power Management Capabilities: " . join(",", (in $objItem->{PowerManagementCapabilities})) . "\n";
      print "Power Management Supported: $objItem->{PowerManagementSupported}\n";
      print "Purpose: $objItem->{Purpose}\n";
      print "Read Policy: $objItem->{ReadPolicy}\n";
      print "Replacement Policy: $objItem->{ReplacementPolicy}\n";
      print "Starting Address: $objItem->{StartingAddress}\n";
      print "Status: $objItem->{Status}\n";
      print "Status Info: $objItem->{StatusInfo}\n";
      print "Supported SRAM: " . join(",", (in $objItem->{SupportedSRAM})) . "\n";
      print "System Creation Class Name: $objItem->{SystemCreationClassName}\n";
      print "System Level Address: $objItem->{SystemLevelAddress}\n";
      print "System Name: $objItem->{SystemName}\n";
      print "Write Policy: $objItem->{WritePolicy}\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.