Core Function RegDelete
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> RegDelete( <key>, <value> ) </pre> === Description === Delete a key or value from the registry. === Parameters === ==== key ==== The registry key to read. ==== value...") |
m (1 revision) |
Revision as of 21:41, 11 August 2014
RegDelete( <key>, <value> )
Contents |
Description
Delete a key or value from the registry.
Parameters
key
The registry key to read.
value
Optional; The value to delete.
type
Type of key to write:
"REG_DWORD" Int32 "REG_QWORD" Int64 "REG_SZ" String "REG_EXPAND_SZ" Expandable Stgring "REG_MULTI_SZ" Array of strings "REG_BINARY" Binary data
Return Value
Success: Returns true.
Failure: Returns false.
Remarks
A registry key must start with:
"HKEY_LOCAL_MACHINE" or "HKLM"
"HKEY_USERS" or "HKU"
"HKEY_CURRENT_USER" or "HKCU"
"HKEY_CLASSES_ROOT" or "HKCR"
"HKEY_CURRENT_CONFIG" or "HKCC"
Example
Delete a key
RegDelete(@"HKCU\SOFTWARE\Test");
Delete a value
RegDelete(@"HKCU\SOFTWARE\Test", "myValue");