And what is actual file size?
We really need your input in this questionnaire
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
services = $node->readAgentTable("System.Services");
if (services == null)
return null;
instances = %();
for(r : services->rows)
{
name = r->get(0);
startup = r->get(4);
if (name like "3CX*" and startup == "Auto")
instances->append(name);
}
return instances;