Get Registry Value
- 14 May 2021
- 1 Minute to read
-
Print
-
DarkLight
-
PDF
Get Registry Value
- Updated on 14 May 2021
- 1 Minute to read
-
Print
-
DarkLight
-
PDF
This is generated from the built in components of BuildMaster 7.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:
Name | Format | Script Usage | Usage 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?