For Cayosoft Administrator version 2.x or later
Published: 1/28/2014
Below are several examples of the expressions you can specify as a parameter value:
- $True- set the value to Bolean “true”
- $FoundObject.Description - Pass “Description” property value of the object that was found by the query
- $LastResult.Description - Pass “Description” property value of the object that was returned by the previous action command. If action command returns an object set, $LastResult gets the first object from the set.
- $LastResult.Description - Pass “Description” property value of the object that was returned by the previous action command. If action command returns an object set, $LastResult gets the first object from the set.
- $ResultSet[0].Description - Pass “Description” property value of the object that is the first in the set of objects returned by the previous action command. Can be used only when previous action command returns a set of objects.
- $ActionResults[0].Description- Pass “Description” property value of the object that was returned by the first action command in the sequence of actions
- $ActionsResultSet[0][0].Description - Pass “Description” property value of the object that is the first in the set of objects returned by the first action command in the sequence of actions. Can be used only when the first action command returns a set of objects.
- $PostResults[0].Description - Can be used in post-processing section. Pass “Description” property value of the object that was returned by the first action command in the sequence of post-processing actions.
- $PreResults[0].Description - Applicable to pre-processing section. Pass “Description” property value of the object that was returned by the first action command in the sequence of pre-processing actions.
- $QueryResults[0].Description - Can be used in a query section. Pass “Description” property value of the object that was returned by the first action command in the s
Comments
0 comments
Please sign in to leave a comment.