Win32_UninterruptiblePowerSupply vbscript 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_UninterruptiblePowerSupply WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_UninterruptiblePowerSupply WMI class represents the capabilities and management capacity of an uninterruptible power supply (UPS). The properties of the UPS device indicate when incoming power is trimmed or boosted, and the aggregated information of the batteries, generators, and so on, that comprise the device. These individual components (for example, multiple batteries) can also be independently modeled and associated with the UPS.
Sample Code
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_UninterruptiblePowerSupply",,48)
For Each objItem in colItems
Wscript.Echo "ActiveInputVoltage: " & objItem.ActiveInputVoltage
Wscript.Echo "Availability: " & objItem.Availability
Wscript.Echo "BatteryInstalled: " & objItem.BatteryInstalled
Wscript.Echo "CanTurnOffRemotely: " & objItem.CanTurnOffRemotely
Wscript.Echo "Caption: " & objItem.Caption
Wscript.Echo "CommandFile: " & objItem.CommandFile
Wscript.Echo "ConfigManagerErrorCode: " & objItem.ConfigManagerErrorCode
Wscript.Echo "ConfigManagerUserConfig: " & objItem.ConfigManagerUserConfig
Wscript.Echo "CreationClassName: " & objItem.CreationClassName
Wscript.Echo "Description: " & objItem.Description
Wscript.Echo "DeviceID: " & objItem.DeviceID
Wscript.Echo "ErrorCleared: " & objItem.ErrorCleared
Wscript.Echo "ErrorDescription: " & objItem.ErrorDescription
Wscript.Echo "EstimatedChargeRemaining: " & objItem.EstimatedChargeRemaining
Wscript.Echo "EstimatedRunTime: " & objItem.EstimatedRunTime
Wscript.Echo "FirstMessageDelay: " & objItem.FirstMessageDelay
Wscript.Echo "InstallDate: " & objItem.InstallDate
Wscript.Echo "IsSwitchingSupply: " & objItem.IsSwitchingSupply
Wscript.Echo "LastErrorCode: " & objItem.LastErrorCode
Wscript.Echo "LowBatterySignal: " & objItem.LowBatterySignal
Wscript.Echo "MessageInterval: " & objItem.MessageInterval
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "PNPDeviceID: " & objItem.PNPDeviceID
Wscript.Echo "PowerFailSignal: " & objItem.PowerFailSignal
Wscript.Echo "PowerManagementCapabilities: " & objItem.PowerManagementCapabilities
Wscript.Echo "PowerManagementSupported: " & objItem.PowerManagementSupported
Wscript.Echo "Range1InputFrequencyHigh: " & objItem.Range1InputFrequencyHigh
Wscript.Echo "Range1InputFrequencyLow: " & objItem.Range1InputFrequencyLow
Wscript.Echo "Range1InputVoltageHigh: " & objItem.Range1InputVoltageHigh
Wscript.Echo "Range1InputVoltageLow: " & objItem.Range1InputVoltageLow
Wscript.Echo "Range2InputFrequencyHigh: " & objItem.Range2InputFrequencyHigh
Wscript.Echo "Range2InputFrequencyLow: " & objItem.Range2InputFrequencyLow
Wscript.Echo "Range2InputVoltageHigh: " & objItem.Range2InputVoltageHigh
Wscript.Echo "Range2InputVoltageLow: " & objItem.Range2InputVoltageLow
Wscript.Echo "RemainingCapacityStatus: " & objItem.RemainingCapacityStatus
Wscript.Echo "Status: " & objItem.Status
Wscript.Echo "StatusInfo: " & objItem.StatusInfo
Wscript.Echo "SystemCreationClassName: " & objItem.SystemCreationClassName
Wscript.Echo "SystemName: " & objItem.SystemName
Wscript.Echo "TimeOnBackup: " & objItem.TimeOnBackup
Wscript.Echo "TotalOutputPower: " & objItem.TotalOutputPower
Wscript.Echo "TypeOfRangeSwitching: " & objItem.TypeOfRangeSwitching
Wscript.Echo "UPSPort: " & objItem.UPSPort
Next
