<CFREGISTRY ACTION="GetAll"
BRANCH="branch"
TYPE="data type"
NAME="query name"
SORT="criteria">
BRANCH
Required. The name of the registry branch containing the keys or values you want to access.
TYPE
Optional. The type of data you want to access:
- String -- Return string values (default).
- DWord -- Return DWord values.
- Key -- Return keys.
- Any -- Return keys and values.
NAME
Required. The name of the record set to contain returned keys and values.
SORT
Optional. Sorts query column data (case-insensitive). Sorts on Entry, Type, and Value columns as text. Specify any combination of columns from query output in a comma separated list. ASC (ascending) or DESC (descending) can be specified as qualifiers for column names. ASC is the default. For example:
Sort="value DESC, entry ASC"
|