Loading |
VBScript |
JavaScript |
Powershell |
Search Options: WMI BatteryRuntime QueryContent of WMI BatteryRuntime Query.vbsMD5 Hash: 4DFE479E55AA34CE0459DED2055EAA5E |
||
On Error Resume Next
Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 arrComputers = Array(".") For Each strComputer In arrComputers WScript.Echo WScript.Echo "==========================================" WScript.Echo "Computer: " & strComputer WScript.Echo "==========================================" Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\WMI") Set colItems = objWMIService.ExecQuery("SELECT * FROM BatteryRuntime", "WQL", _ wbemFlagReturnImmediately + wbemFlagForwardOnly) For Each objItem In colItems WScript.Echo "Active: " & objItem.Active WScript.Echo "Caption: " & objItem.Caption WScript.Echo "Description: " & objItem.Description WScript.Echo "EstimatedRuntime: " & objItem.EstimatedRuntime WScript.Echo "Frequency_Object: " & objItem.Frequency_Object WScript.Echo "Frequency_PerfTime: " & objItem.Frequency_PerfTime WScript.Echo "Frequency_Sys100NS: " & objItem.Frequency_Sys100NS WScript.Echo "InstanceName: " & objItem.InstanceName WScript.Echo "Name: " & objItem.Name WScript.Echo "Tag: " & objItem.Tag WScript.Echo "Timestamp_Object: " & objItem.Timestamp_Object WScript.Echo "Timestamp_PerfTime: " & objItem.Timestamp_PerfTime WScript.Echo "Timestamp_Sys100NS: " & objItem.Timestamp_Sys100NS WScript.Echo Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |