ADME Error: EvaluatorException (new ProbePostProcessor({
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hello everyone,
We are running into an issue with the ADME probe. Whenever the Windows Enhanced Application Dependency probe is triggered, we consistently see the following error message.
EvaluatorException(new ProbePostProcessor({
/**
* Runs the probe instance
*/
process: function() {
var obj = JSON.parse(output);
try {
var rpf = this.getParameter("running_process_filter");
if (rpf) {
var filterDefs = JSON.parse(rpf);
var filtering = new RunningProcessesFilter();
obj.related_data.processes = filtering.filterResults(obj.related_data.processes, filterDefs);
}
} catch (e) {
if (typeof ms != 'undefined')
ms.error("Windows - ADM Enhanced: Something went wrong while trying to filter processes. Error=" + e);
else
// If we don't have access to ms, we are not on the MID
// Which means we are in classic mode:
DiscoveryLogger.warn("Windows - ADM Enhanced: Process filtering skipped. Classic mode is not supported.");
}
current = obj.collector_info;
related_data = obj.related_data;
},
type: "ProbePostProcessor"
});)
In addition, after execution, we also get another error stating: “ADME collector didn’t return any result.”
Has anyone else experienced this behavior? What could be causing the probe to fail, and are there recommended steps to troubleshoot or resolve this issue? Any guidance would be greatly appreciated.
Thanks,
Pranita Bahuguni