Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI » jscript sample

Win32_OSRecoveryConfiguration jscript 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_OSRecoveryConfiguration WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


Description

The Win32_OSRecoveryConfiguration WMI class represents the types of information that will be gathered from memory when the operating system fails. This includes boot failures and system crashes.

Sample Code

var wbemFlagReturnImmediately = 0x10;
var wbemFlagForwardOnly = 0x20;

var arrComputers = new Array("\localhost");
for (i = 0; i < arrComputers.length; i++) {
   WScript.Echo();
   WScript.Echo("==========================================");
   WScript.Echo("Computer: " + arrComputers[i]);
   WScript.Echo("==========================================");

   var objWMIService = GetObject("winmgmts:\\\\" + arrComputers[i] + "\\root\\CIMV2");
   var colItems = objWMIService.ExecQuery("SELECT * FROM Win32_OSRecoveryConfiguration", "WQL",
                                          wbemFlagReturnImmediately | wbemFlagForwardOnly);

   var enumItems = new Enumerator(colItems);
   for (; !enumItems.atEnd(); enumItems.moveNext()) {
      var objItem = enumItems.item();

      WScript.Echo("AutoReboot: " + objItem.AutoReboot);
      WScript.Echo("Caption: " + objItem.Caption);
      WScript.Echo("DebugFilePath: " + objItem.DebugFilePath);
      WScript.Echo("DebugInfoType: " + objItem.DebugInfoType);
      WScript.Echo("Description: " + objItem.Description);
      WScript.Echo("ExpandedDebugFilePath: " + objItem.ExpandedDebugFilePath);
      WScript.Echo("ExpandedMiniDumpDirectory: " + objItem.ExpandedMiniDumpDirectory);
      WScript.Echo("KernelDumpOnly: " + objItem.KernelDumpOnly);
      WScript.Echo("MiniDumpDirectory: " + objItem.MiniDumpDirectory);
      WScript.Echo("Name: " + objItem.Name);
      WScript.Echo("OverwriteExistingDebugFile: " + objItem.OverwriteExistingDebugFile);
      WScript.Echo("SendAdminAlert: " + objItem.SendAdminAlert);
      WScript.Echo("SettingID: " + objItem.SettingID);
      WScript.Echo("WriteDebugInfo: " + objItem.WriteDebugInfo);
      WScript.Echo("WriteToSystemLog: " + objItem.WriteToSystemLog);
   }
}