Custom filter on the Log Panel can be changed with a script or macro. For more details on the filter and its configuration in the user interface, see Custom filter in the Log panel.

Use APPLY_FILTER reaction of the VIDEOSRV_M object to create or change the custom filter in the Log Panel:

DoReact("VIDEOSRV_M","","APPLY_FILTER","computer<>,query<>");

Parameters:

computer<> – NetBIOS name of the computer to execute the command on.

query<> – filter condition.

The query<>parameter syntax:

query<TotalExpressions;BoolOperatorKind;Expression[;Expression]>

Examples:


query<1;and;CamCnt;1;and;Equal;2>

With main expressions:


query<2;and;CamCnt;1;and;Less;5;CamCnt;1;and;Greater;3>

With subquery:


query<2;and;CamCnt;2;and;Less;5;CamCnt;2;and;Greater;3>


query<3;and;CamCnt;2;and;Greater;1;CamCnt;2;and;Less;5;HddCnt;1;and;Greater;0>


query<1;and;Name;1;and;Like;%47>