Get Registry Value
  • 14 May 2021
  • 1 Minute to read
  • Dark
    Light
  • PDF

Get Registry Value

  • Dark
    Light
  • PDF

Article Summary

This is generated from the built in components of Otter 3.0.0, and may be different than what you have installed (especially if you have extensions); go to [User Icon] -> Documentation within your BuildMaster instance to see exactly what operations are available.

Get Registry Value

Reads a value from the Windows registry and stores it in a variable.

Script usage:

Windows::Get-RegistryValue(
	Hive: <integer>,
	Key: <text>,
	Name: <text>,
	[Value: <RuntimeValue>],
	[FailIfNotFound: <true/false>]
);

Arguments:

NameFormatScript UsageUsage Notes
Hive
integer
Hive
This argument is required.
Key
text
Key
This argument is required.
Value name
text
Name
This argument is required.
Store to variable
RuntimeValue
Value
Fail if value not found
true/false
FailIfNotFound

Example:

Windows::Get-RegistryValue
(
    Hive: LocalMachine,
    Key: SOFTWARE\7-Zip,
    Name: Path,
    Value => $PathTo7Zip
);

Was this article helpful?

What's Next