Hello Eriks,
thanks for the hint. I set the access rights at "infrastrukture services" and it works... :-)
Thanks a lot ...
Greets
Marco
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
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;