--- title: "Ensure Registry Key Value" ---
This is generated from the built in components of Otter 2024.0, and may be different than what you have installed (especially if you have extensions); go to [Gear Icon] -> Administration -> Operations within your Otter instance to see exactly what operations are available.

Ensures that a registry value exists or does not exist on a specified key.

Script usage:

Windows::Ensure-RegistryKeyValue(
	Name: <text>,
	[Value: <@(text)>],
	[Kind: <integer>],
	[Exists: <true/false>],
	[Hive: <integer>],
	[Key: <text>],
	Path: <text>
);

Arguments:

NameFormatScript UsageUsage Notes
Value name
text
Name
This argument is required.
Value
@(text)
Value
Value kind
integer
Kind
Exists
true/false
Exists
Hive
integer
Hive
Key
text
Key
Path
text
Path
This argument is required.

Example:

Windows::Ensure-RegistryKeyValue
(
    Path: HKLM:SOFTWARE\Inedo\BuildMaster,
    Name: ServicePath,
    Value: C:\BuildMaster\Service,
);