User guide

75
Delete Windows Registry Key
This action allows deleting an existing registry key. It will fail if the registry key does not exist. The configuration
variables of this action are:
Parameters
Mandatory?
Description
RegistryKey
Yes
The complete name of the registry key to delete (i.e.
HKLM\Software\KEYTODELETE).
OperatingSystemType
No
The operating system type in which to delete the registry key.
The allowed values are:
- 32: The key will be deleted in the 32-bit registry. If not
specified, this will be the default.
- 64: The key will be deleted in the 64-bit registry.
Create Windows Registry Value
This action allows creating a new registry value. If the registry key specified does not exist, it will be created. If the
registry value already exists, its data and type will be replaced. The configuration variables of this action are:
Parameters
Mandatory?
Description
RegistryKey
Yes
The complete name of the registry key that contains the value
(i.e. HKLM\Software\MYKEY).
RegistryValue
Yes
The name of the registry value to be added / modified.
ValueType
No
The type of data of the registry value. The allowed values are:
- REG_SZ : String (default value if not specified)
- REG_QWORD_LITTLE_ENDIAN : A 64-bit number in
little-endian format
- REG_QWORD : A 64-bit number
- REG_NONE : No value
- REG_MULTI_SZ : Multi-line string (separated by \0)
- REG_LINK : Symbolic Link
- REG_EXPAND_SZ : String with unexpanded references
to environment variables
- REG_DWORD_BIG_ENDIAN : A 32-bit number in big-
endian format
- REG_DWORD_LITTLE_ENDIAN : A 32-bit number in
little-endian format
- REG_DWORD : A 32-bit number
- REG_BINARY : Binary data in any form
RegistryData
No
The data to affect to the registry value.