Adds a keypair to an existing key under the HKLM\Software branch.
If any error (ie: key does not exist) return false.
Namespace: LLCryptoLib.UtilsAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public static bool SetHKLMValue(
string keyname,
string name,
string valkey
) |
Visual Basic |
---|
Public Shared Function SetHKLMValue ( _
keyname As String, _
name As String, _
valkey As String _
) As Boolean |
Visual C++ |
---|
public:
static bool SetHKLMValue(
String^ keyname,
String^ name,
String^ valkey
) |
Parameters
- keyname
- Type: System..::..String
Name of an existing key
- name
- Type: System..::..String
Name of the key value
- valkey
- Type: System..::..String
Value to be set
Return Value
True if key is correctly set.
See Also