Hi Victor,
does this option also apply to access to the Windows event log?
Greets
Marco
does this option also apply to access to the Windows event log?
Greets
Marco
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
if ( (! $node->isAgent) && (! $node->platformName ~= "windows.*") ) return false;
table = AgentReadTable($node, "System.Services");
if ( table == null ) return false;
colName = table->getColumnIndex("NAME");
for (currentRow = 0; currentRow < table->rowCount; currentRow++)
{
if ( table->get(currentRow, colName) == "DNS" ) return true;
}
return false;