I have tested with Web NXMC and its working there.
Looks to be a bug in NXMC for Windows.
https://track.radensolutions.com/issue/NX-1745
				
			Looks to be a bug in NXMC for Windows.
https://track.radensolutions.com/issue/NX-1745
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 MenuQuote2020.02.04 13:07:32.654 *D* [client.session.0 ] Received message CMD_POLICY_FORCE_APPLY
2020.02.04 13:07:32.654 *D* [client.session.0 ] Sending message CMD_REQUEST_COMPLETED (32 bytes)
2020.02.04 13:07:32.655 *D* [ ] Job 45842 added to queue (node=3636, type=DEPLOY_AGENT_POLICY, description="Deploy policy TestFileDelivery")
2020.02.04 13:07:32.656 *D* [ ] Template::forceApplyPolicyChanges(001-docker11): "TestFileDelivery" policy deploy scheduled for "001-docker11" node
2020.02.04 13:07:32.656 *D* [client.session.0 ] Sending compressed message CMD_JOB_CHANGE_NOTIFICATION (128 bytes)
2020.02.04 13:07:32.656 *D* [ ] Job 45842 started
2020.02.04 13:07:32.803 *D* [node.agent ] Node::createAgentConnection(001-docker11 [3636]): conn=0x7fb1360bc1c0
2020.02.04 13:07:32.803 *D* [agent.policy ] FileDeliveryPolicy::deploy(001-docker11 [3636] from TestFileDelivery/TestFileDelivery)
2020.02.04 13:07:32.803 *D* [agent.policy ] FileDeliveryPolicy::deploy(001-docker11 [3636] from TestFileDelivery/TestFileDelivery): preparing file list
2020.02.04 13:07:32.828 *D* [ ] Job 45842 finished, status=COMPLETED
2020.02.04 13:07:32.828 *D* [client.session.0 ] Sending compressed message CMD_JOB_CHANGE_NOTIFICATION (144 bytes)
sudo apt-get install -y links libssl-dev build-essential
MAJOR=$(links -dump "https://www.netxms.org/download/releases/" | egrep "([0-9]+\.[0-9])"  | awk '{print $1}' | cut -d "/" -f1 | tail -n1)
MINOR=$(links -dump "https://netxms.org/download/releases/$MAJOR" | sed 's/[^0-9.]*\([0-9.]*\).*/\1/' | egrep -v "^$|^\." | sort -t. -k3,3n | tail -n1 | sed 's/\.$//')
echo "Create build folder"
mkdir ~/NetXMS
cd ~/NetXMS
wget --no-check-certificate https://www.netxms.org/download/releases/${MAJOR}/netxms-${MINOR}.tar.gz
echo "Unpack source to clean folder"
if [ -d netxms-${MINOR} ]; then rm -rf netxms-${MINOR}; fi
tar -zxvf netxms-${MINOR}.tar.gz
cd netxms-${MINOR}
./configure --with-agent --without-curl --disable-ssh --disable-mqtt --prefix=/opt/nxagent
make
RETURN_CODE=$?
if [ $RETURN_CODE -gt 0 ]; then
    echo "Something bad happen: $RETURN_CODE"
    exit
fi
echo "Stop current"
sudo systemctl stop nxagentd
echo "Make install"
sudo make install
RETURN_CODE=$?
if [ $RETURN_CODE -gt 0 ]; then
    echo "Something bad happen: $RETURN_CODE"
    exit
fi
sudo cp contrib/startup/systemd/nxagentd.service /etc/systemd/system/
sudo systemctl enable nxagentd
				if ($node->isAgent && $node->platformName like "Linux-*") {
    users = $node->readAgentList("UserList");
    if ( users == null ) return null;
    foreach ( user : users ) {
      if ( user == ServiceName ) return true;
    }
  }
  return false;if ($node->isAgent && $node->platformName like "Linux-*") {
    users = AgentReadList($node,"UserList");
    if ( users == null ) return null;
    foreach ( user : users ) {
      if ( user == ServiceName ) return true;
    }
  }
  return false;QuoteDW::DiscoverActiveMQ("DLQDetailsQueue")
if ($1 == "ActiveMQ") {
  //return AgentReadList($node, "DiscoverActiveMQ(" . $targetObject->ipAddr . ")");
  return $targetObject->readAgentList("DiscoverActiveMQ(" . $targetObject->ipAddr . ")");
}sub ServiceCheck(ServiceName) {
  if ($node->isAgent && $node->platformName like "Linux-*") {
    users = AgentReadList($node,"UserList");
    if ( users == null ) return null;
    foreach ( user : users ) {
      if ( user == ServiceName ) return true;
    }
  }
  return false;
}
				 
				Quoteif ($node->runtimeFlags & 0x0004) {
return true;
}
 
				curl -X GET --cookie "session_handle=$SESSION_HANDLE" "$API_HOME/objects/1579"curl -X GET --cookie "session_handle=$SESSION_HANDLE" "$API_HOME/objects?class=container,node"
				