Difference between revisions of "Script Example: Enumerate All Custom Attributes for Node"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "'''Requirements''' Enumerate all custom attributes on a node. '''Solution''' Note: this script requires NetXMS version 2.0.2 or higher. <syntaxhighlight lang="c"> attribu...")
(No difference)

Revision as of 15:50, 22 January 2016

Requirements

Enumerate all custom attributes on a node.


Solution

Note: this script requires NetXMS version 2.0.2 or higher.

attributes = $node->customAttributes;
foreach(a : attributes->keys)
{
        println a . "=" . attributes[a];
}