Win32_PhysicalMemory perl sample code
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_PhysicalMemory WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_PhysicalMemory WMI class represents a physical memory device located on a computer system as available to the operating system.
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_PhysicalMemory", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); foreach my $objItem (in $colItems) { print "BankLabel: $objItem->{BankLabel}\n"; print "Capacity: $objItem->{Capacity}\n"; print "Caption: $objItem->{Caption}\n"; print "CreationClassName: $objItem->{CreationClassName}\n"; print "DataWidth: $objItem->{DataWidth}\n"; print "Description: $objItem->{Description}\n"; print "DeviceLocator: $objItem->{DeviceLocator}\n"; print "FormFactor: $objItem->{FormFactor}\n"; print "HotSwappable: $objItem->{HotSwappable}\n"; print "InstallDate: $objItem->{InstallDate}\n"; print "InterleaveDataDepth: $objItem->{InterleaveDataDepth}\n"; print "InterleavePosition: $objItem->{InterleavePosition}\n"; print "Manufacturer: $objItem->{Manufacturer}\n"; print "MemoryType: $objItem->{MemoryType}\n"; print "Model: $objItem->{Model}\n"; print "Name: $objItem->{Name}\n"; print "OtherIdentifyingInfo: $objItem->{OtherIdentifyingInfo}\n"; print "PartNumber: $objItem->{PartNumber}\n"; print "PositionInRow: $objItem->{PositionInRow}\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 "Speed: $objItem->{Speed}\n"; print "Status: $objItem->{Status}\n"; print "Tag: $objItem->{Tag}\n"; print "TotalWidth: $objItem->{TotalWidth}\n"; print "TypeDetail: $objItem->{TypeDetail}\n"; print "Version: $objItem->{Version}\n"; print "\n"; } }sub WMIDateStringToDate(strDate) { return "blah"; }