winRegistry.delete

Syntax winRegistry.delete (path)

Params path is a backslash-delimited path name to the registry key or value you wish to delete.

Action Deletes a registry key or value.

Returns true

Examples winRegistry.delete ("HKCR\\MyKey\\")

   » true

winRegistry.delete ("HKCR\\MyKey\\ValueWhichDoesNotExist")

   » true

Notes Top-level keys may be abbreviated. The key names and corresponding abbreviations are:

HKCR -- HKEY_CLASSES_ROOT

HKCU -- HKEY_CURRENT_USER

HKLM -- HKEY_LOCAL_MACHINE

HKU -- HKEY_USERS

HKCC -- HKEY_CURRENT_CONFIG

This verb is new in Frontier 7.0.

Platform Notes This verb is only implemented in the Windows version of Frontier.

See Also winRegistry.read

winRegistry.write

winRegistry.getType

Discuss