Reference Guide

Dell Security Center v10.2.7 AdminHelp
43
BEGINSWITH
ENDSWITH
CONTAINS
These operators can be used on the string fields:
UID BEGINSWITH "A1850502"
ASSETTAG CONTAINS "007"
String fields also have the following string operators that return substrings of the field:
LEFT(string,int)
RIGHT(string,int)
MID(string,int,int)
The substring operators can be used in the string operators that return Boolean values:
LEFT(DISPLAYNAME, 4 ) = "A185"
There is one additional string operator that returns an integer value that is the length of the string:
LEN(string)
This can be used in a Boolean expression:
LEN(DISPLAYNAME)<=10
Working with Complex Queries
Rule Specifications in the Management Console allows users to combine rules to filter a unique set of
devices. For queries that contain multiple options, isolate sub-rules in parenthesis to ensure they are run
separately before they are combined with the larger specification.
This query selects all devices with an operating system named Windows 10 Pro or Windows 10 Ent and
DESKTOP in the hostname:
OS CONTAINS "Windows 10 Pro" OR OS CONTAINS "Windows 10 Ent" AND UID
CONTAINS "DESKTOP"
This query selects any device containing Windows 10 Pro and only devices with the hostname
containing DESKTOP that running an operating system with the name containing Windows 10 Ent:
OS CONTAINS "Windows 10 Pro" OR (OS CONTAINS "Windows 10 Ent" AND UID
CONTAINS "DESKTOP")
Examples
Data Guardian:
To display Data Guardian internal clients, add the specification "cloudpresent and cloudinternal".
To display Data Guardian external clients, add the specification "cloudpresent and cloudexternal".