Greetings,
Are there any methods within nxsl to filter nodes that are set to unmanaged ? I looked all through the docs and the closest I came was isInMaintenanceMode.I have a several wireless devices that are being decommissioned and I do not want any type of polling to be done but I do want to be able to filter them out to keep track of the progress and add them to the decommissioned container.
It's one of the possible values for object's status (https://netxms.org/documentation/nxsl-latest/#const-object-status)
This script should do the job:
return $object.status == Status::UNMANAGED;
Perfect !! Thank you