Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
Expressions
Expressions are used to configure the selection criteria that is used by agent policies and object policies for identifying discovered objects and applying the actions to them.
Expressions are configured by object type.
The Expressions Editor dialog box is an advanced tool that can assist with configuring more complex expressions. The Expressions Editor supports regular expressions in order to configure complex expressions. Note that when multiple expressions are used within a policy, they are evaluated in an OR comparison type.
This section includes:
Information
When defining a regular expression that requires a shorthand character class, the expression's "\" character must be escaped with another "\".
Example expression: ^(?=\s*\S).*$
This expression means "any string that is not all spaces" (\s matches whitespace, \S is negated \s); the correct way to define the expression is to ensure the "\" character includes another "\", as shown below: