Adds a registry key, adds a value, or updates a value.
<cfregistry action = "set" branch = "branch" entry = "key or value" type = "value type" value = "data">
If it does not exist,
cfregistry
creates the key or value.
<!--- This example uses cfregistry Set Action to modify registry value data ---> <!--- Normally you pass in a file name instead of setting one here. ---> <cfset FileName = "dummy.cfm"> <cfregistry action = "set" branch = "HKEY_LOCAL_MACHINE\Software\cflangref" entry = "LastCFM01" type = "String" value = "#FileName#"> <h1>cfregistry action = "set"</h1>