Win32_PhysicalMemoryArray perl sample code | ActiveXperts Network Monitor
The foundations for Manageability in Windows is Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).
ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself. The Win32_PhysicalMemoryArray WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_PhysicalMemoryArray WMI class represents details about the computer system`s physical memory. This includes the number of memory devices, memory capacity available, and memory type (for example, system memory or video memory).
Sample Code
use strict;
use Win32::OLE('in');
use constant wbemFlagReturnImmediately => 0x10;
use constant wbemFlagForwardOnly => 0x20;
my @computers = ("\localhost");
foreach my $computer (@computers) {
print "\n";
print "==========================================\n";
print "Computer: $computer\n";
print "==========================================\n";
my $objWMIService = Win32::OLE->GetObject("winmgmts:\\\\$computer\\root\\CIMV2") or die "WMI connection failed.\n";
my $colItems = $objWMIService->ExecQuery("SELECT * FROM Win32_PhysicalMemoryArray", "WQL",
wbemFlagReturnImmediately | wbemFlagForwardOnly);
foreach my $objItem (in $colItems) {
print "Caption: $objItem->{Caption}\n";
print "CreationClassName: $objItem->{CreationClassName}\n";
print "Depth: $objItem->{Depth}\n";
print "Description: $objItem->{Description}\n";
print "Height: $objItem->{Height}\n";
print "HotSwappable: $objItem->{HotSwappable}\n";
print "InstallDate: $objItem->{InstallDate}\n";
print "Location: $objItem->{Location}\n";
print "Manufacturer: $objItem->{Manufacturer}\n";
print "MaxCapacity: $objItem->{MaxCapacity}\n";
print "MemoryDevices: $objItem->{MemoryDevices}\n";
print "MemoryErrorCorrection: $objItem->{MemoryErrorCorrection}\n";
print "Model: $objItem->{Model}\n";
print "Name: $objItem->{Name}\n";
print "OtherIdentifyingInfo: $objItem->{OtherIdentifyingInfo}\n";
print "PartNumber: $objItem->{PartNumber}\n";
print "PoweredOn: $objItem->{PoweredOn}\n";
print "Removable: $objItem->{Removable}\n";
print "Replaceable: $objItem->{Replaceable}\n";
print "SerialNumber: $objItem->{SerialNumber}\n";
print "SKU: $objItem->{SKU}\n";
print "Status: $objItem->{Status}\n";
print "Tag: $objItem->{Tag}\n";
print "Use: $objItem->{Use}\n";
print "Version: $objItem->{Version}\n";
print "Weight: $objItem->{Weight}\n";
print "Width: $objItem->{Width}\n";
print "\n";
}
}sub WMIDateStringToDate(strDate)
{
return "blah";
}
