<CFREGISTRY ACTION="Set"
BRANCH="branch"
ENTRY="key or value"
TYPE="value type"
VALUE="data">
BRANCH
Required. The name of the registry branch containing the key or value to be set.
ENTRY
Required. The key or value to be set.
TYPE
Optional. The type of data you want to set:
- String -- Set a string value (default).
- DWord -- Set a DWord value.
- Key -- Create a key.
VALUE
Optional. The value data to be set. If you omit this attribute, CFREGISTRY creates default value data, as follows:
- String -- Default value is an empty string: ""
- DWord -- Default value is 0 (zero)
|