Used with the delete
action to delete a registry key or value.
<cfregistry action = "delete" branch = "branch" entry = "keyorvalue">
cfcookie,
cfparam,
cfsavecontent,
cfschedule,
cfset
If you delete a key, cfregistry
also deletes values and subkeys defined beneath the key.
<!--- This example uses cfregistry with the delete Action to remove a key from the registry ---> <html> <head> <title>cfregistry action = "delete"</title> </head> <body> <cfregistry action = "delete" branch = "HKEY_LOCAL_MACHINE\Software\cflangref\tempkey" entry = "LastCFM01"> <H1>cfregistry action = "delete"</H1> </body> </html>