Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI » JScript

Win32-Service - WMI JScript sample

The foundations for Manageability in Windows 2019/2016/2012/2008 and Windows 10/7/XP are 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.

On this site, you can find many WMI samples.

The Win32_Service WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


Win32-Service

Description

The Win32_Service WMI class represents a service on a Windows computer system. A service application conforms to the interface rules of the Service Control Manager (SCM) and can be started by a user automatically at system boot through the Services control panel utility, or by an application that uses the service functions included in the Windows API. Services can execute even when no user is logged on to the system.

Example(s)

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

var arrComputers = new Array("DELL17");
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_Service", "WQL",
                                          wbemFlagReturnImmediately | wbemFlagForwardOnly);

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

      WScript.Echo("AcceptPause: " + objItem.AcceptPause);
      WScript.Echo("AcceptStop: " + objItem.AcceptStop);
      WScript.Echo("Caption: " + objItem.Caption);
      WScript.Echo("CheckPoint: " + objItem.CheckPoint);
      WScript.Echo("CreationClassName: " + objItem.CreationClassName);
      WScript.Echo("Description: " + objItem.Description);
      WScript.Echo("DesktopInteract: " + objItem.DesktopInteract);
      WScript.Echo("DisplayName: " + objItem.DisplayName);
      WScript.Echo("ErrorControl: " + objItem.ErrorControl);
      WScript.Echo("ExitCode: " + objItem.ExitCode);
      WScript.Echo("InstallDate: " + WMIDateStringToDate(objItem.InstallDate));
      WScript.Echo("Name: " + objItem.Name);
      WScript.Echo("PathName: " + objItem.PathName);
      WScript.Echo("ProcessId: " + objItem.ProcessId);
      WScript.Echo("ServiceSpecificExitCode: " + objItem.ServiceSpecificExitCode);
      WScript.Echo("ServiceType: " + objItem.ServiceType);
      WScript.Echo("Started: " + objItem.Started);
      WScript.Echo("StartMode: " + objItem.StartMode);
      WScript.Echo("StartName: " + objItem.StartName);
      WScript.Echo("State: " + objItem.State);
      WScript.Echo("Status: " + objItem.Status);
      WScript.Echo("SystemCreationClassName: " + objItem.SystemCreationClassName);
      WScript.Echo("SystemName: " + objItem.SystemName);
      WScript.Echo("TagId: " + objItem.TagId);
      WScript.Echo("WaitHint: " + objItem.WaitHint);
   }
}

function WMIDateStringToDate(dtmDate)
{
   if (dtmDate == null)
   {
      return "null date";
   }
   var strDateTime;
   if (dtmDate.substr(4, 1) == 0)
   {
      strDateTime = dtmDate.substr(5, 1) + "/";
   }
   else
   {
      strDateTime = dtmDate.substr(4, 2) + "/";
   }
   if (dtmDate.substr(6, 1) == 0)
   {
      strDateTime = strDateTime + dtmDate.substr(7, 1) + "/";
   }
   else
   {
      strDateTime = strDateTime + dtmDate.substr(6, 2) + "/";
   }
   strDateTime = strDateTime + dtmDate.substr(0, 4) + " " +
   dtmDate.substr(8, 2) + ":" +
   dtmDate.substr(10, 2) + ":" +
   dtmDate.substr(12, 2);
   return(strDateTime);
}