Click here to return to the KiXtart HelpDesk main page...

KiXtart Command Reference

DELVALUE

action

Deletes a value entry from the registry.

syntax

DELVALUE ("subkey", "entry")

parameter

Subkey

A string that specifies the name of the subkey from which you want to delete an entry.

Entry

A string that specifies the name of the entry you want to delete.

returns

0

Value entry deleted

Error code

Function failed

Example

$ReturnCode  =DelValue("HKEY_CURRENT_USER\EZReg", "Test")

If $ReturnCode = 0

   ? "Value deleted...."

Endif