Win32_SystemSlot 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_SystemSlot WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_SystemSlot WMI class represents physical connection points including ports, motherboard slots and peripherals, and proprietary connections points.
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_SystemSlot", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); foreach my $objItem (in $colItems) { print "Caption: $objItem->{Caption}\n"; print "ConnectorPinout: $objItem->{ConnectorPinout}\n"; print "ConnectorType: " . join(",", (in $objItem->{ConnectorType})) . "\n"; print "CreationClassName: $objItem->{CreationClassName}\n"; print "CurrentUsage: $objItem->{CurrentUsage}\n"; print "Description: $objItem->{Description}\n"; print "HeightAllowed: $objItem->{HeightAllowed}\n"; print "InstallDate: $objItem->{InstallDate}\n"; print "LengthAllowed: $objItem->{LengthAllowed}\n"; print "Manufacturer: $objItem->{Manufacturer}\n"; print "MaxDataWidth: $objItem->{MaxDataWidth}\n"; print "Model: $objItem->{Model}\n"; print "Name: $objItem->{Name}\n"; print "Number: $objItem->{Number}\n"; print "OtherIdentifyingInfo: $objItem->{OtherIdentifyingInfo}\n"; print "PartNumber: $objItem->{PartNumber}\n"; print "PMESignal: $objItem->{PMESignal}\n"; print "PoweredOn: $objItem->{PoweredOn}\n"; print "PurposeDescription: $objItem->{PurposeDescription}\n"; print "SerialNumber: $objItem->{SerialNumber}\n"; print "Shared: $objItem->{Shared}\n"; print "SKU: $objItem->{SKU}\n"; print "SlotDesignation: $objItem->{SlotDesignation}\n"; print "SpecialPurpose: $objItem->{SpecialPurpose}\n"; print "Status: $objItem->{Status}\n"; print "SupportsHotPlug: $objItem->{SupportsHotPlug}\n"; print "Tag: $objItem->{Tag}\n"; print "ThermalRating: $objItem->{ThermalRating}\n"; print "VccMixedVoltageSupport: " . join(",", (in $objItem->{VccMixedVoltageSupport})) . "\n"; print "Version: $objItem->{Version}\n"; print "VppMixedVoltageSupport: " . join(",", (in $objItem->{VppMixedVoltageSupport})) . "\n"; print "\n"; } }sub WMIDateStringToDate(strDate) { return "blah"; }