Reference Guide

Navigate the Dell Server
BITLOCKERPRESENT
TRUE/FALSE value for BitLocker Manager, indicating if BitLocker
is enabled.
TOTALMEMORY
Total memory available on the computer
TPMENABLED
TRUE/FALSE value for TPM, indicating if TPM is enabled
TPMPRESENT
All TPM clients
Operators and Expressions
The basic operators are the binary operators that return a Boolean value.
Operator Meaning
=
Boolean, Integer, and String equality operator
>, >=
Greater than, greater than or equal, integer operator
<, <=
Less than, less than or equal, integer operator
<>
Not equal, integer string operator
AND
Logical AND for Boolean expression
OR
Logical OR for Boolean expression
NOT
Logical NOT for Boolean expression
The logical operators follow the standard Boolean operator precedence (NOT, AND, OR). String fields
have the following string operators that return Boolean values:
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:
70