Win32_SystemEnclosure 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_SystemEnclosure WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_SystemEnclosure WMI class represents the properties associated with a physical system enclosure.
Sample Code
use strict; use Win32::OLE('in'); use constant wbemFlagReturnImmediately => 0x10; use constant wbemFlagForwardOnly => 0x20; my @computers = ("DELL17"); 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_SystemEnclosure", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); foreach my $objItem (in $colItems) { print "AudibleAlarm: $objItem->{AudibleAlarm}\n"; print "BreachDescription: $objItem->{BreachDescription}\n"; print "CableManagementStrategy: $objItem->{CableManagementStrategy}\n"; print "Caption: $objItem->{Caption}\n"; print "ChassisTypes: " . join(",", (in $objItem->{ChassisTypes})) . "\n"; print "CreationClassName: $objItem->{CreationClassName}\n"; print "CurrentRequiredOrProduced: $objItem->{CurrentRequiredOrProduced}\n"; print "Depth: $objItem->{Depth}\n"; print "Description: $objItem->{Description}\n"; print "HeatGeneration: $objItem->{HeatGeneration}\n"; print "Height: $objItem->{Height}\n"; print "HotSwappable: $objItem->{HotSwappable}\n"; print "InstallDate: $objItem->{InstallDate}\n"; print "LockPresent: $objItem->{LockPresent}\n"; print "Manufacturer: $objItem->{Manufacturer}\n"; print "Model: $objItem->{Model}\n"; print "Name: $objItem->{Name}\n"; print "NumberOfPowerCords: $objItem->{NumberOfPowerCords}\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 "SecurityBreach: $objItem->{SecurityBreach}\n"; print "SecurityStatus: $objItem->{SecurityStatus}\n"; print "SerialNumber: $objItem->{SerialNumber}\n"; print "ServiceDescriptions: " . join(",", (in $objItem->{ServiceDescriptions})) . "\n"; print "ServicePhilosophy: " . join(",", (in $objItem->{ServicePhilosophy})) . "\n"; print "SKU: $objItem->{SKU}\n"; print "SMBIOSAssetTag: $objItem->{SMBIOSAssetTag}\n"; print "Status: $objItem->{Status}\n"; print "Tag: $objItem->{Tag}\n"; print "TypeDescriptions: " . join(",", (in $objItem->{TypeDescriptions})) . "\n"; print "Version: $objItem->{Version}\n"; print "VisibleAlarm: $objItem->{VisibleAlarm}\n"; print "Weight: $objItem->{Weight}\n"; print "Width: $objItem->{Width}\n"; print "\n"; } }sub WMIDateStringToDate(strDate) { return "blah"; }