Registry Module
Contains functions which allow to read and write information from/to the registry.
Types
Type | Description |
Functions and values
Function or value | Description |
Full Usage:
Registry.createRegistrySubKey baseKey subKey
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
|
Example
|
Full Usage:
Registry.deleteRegistrySubKey baseKey subKey
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
|
Example
|
Full Usage:
Registry.deleteRegistryValue baseKey subKey name
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
name : string
-
The name of the registry entry
|
Example
|
|
|
|
|
|
|
Full Usage:
Registry.getRegistryKey baseKey subKey writePermission
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
writePermission : bool
-
The write permissions on registry entry
Returns: RegistryKey
|
|
Full Usage:
Registry.getRegistryKey64 baseKey subKey writePermission
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
writePermission : bool
-
The write permissions on registry entry
Returns: RegistryKey
|
|
Full Usage:
Registry.getRegistrySubKeyNames baseKey subKey
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
Returns: string[]
|
|
Full Usage:
Registry.getRegistryValue baseKey subKey name
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
name : string
-
The name of the registry entry
Returns: string
|
Example
|
Full Usage:
Registry.getRegistryValue64 baseKey subKey name
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
name : string
-
The name of the registry entry
Returns: string
|
|
Full Usage:
Registry.getRegistryValueNames baseKey subKey
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
Returns: string[]
|
Example
|
Full Usage:
Registry.setRegistryValue baseKey subKey name value
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
name : string
-
The name of the registry entry
value : 'T
-
The registry entry new value
|
Example
|
Full Usage:
Registry.valueExistsForKey baseKey subKey name
Parameters:
RegistryBaseKey
-
The registry value base key
subKey : string
-
The sub key
name : string
-
The name of the registry entry
Returns: bool
|
Example
|