|
Registry - Rename Value |
<AMREGISTRY ACTIVITY="rename_value" KEY="text" VALUE="text" VALUEDATA="text" /> |
Description:
Renames the current value of an existing registry key.
IMPORTANT: Incorrectly editing the registry may severely damage your system. Before making changes to the registry, you should back up any valued data on your computer. |
Commonly used to change registry values.
NOTE: Many of the keys that control Windows itself have access restrictions and can be modified only by an Administrator. |
General
Property |
Type |
Required |
Default |
Markup |
Description |
Registry key |
Text |
Yes |
(Empty) |
KEY="HKEY_CURRENT_USER\Software \NetAuto\AutoMate\\AMSERVICES" |
The registry which contains the value to rename. |
Value name |
Text |
Yes |
(Empty) |
VALUE="Width" |
The name of the value to rename. |
New name |
Text |
Yes |
(Empty) |
VALUEDATA="HKEY_CURRENT_USER\Software \NetAuto\AutoMate\\AMSUPPORT" |
The new name for the value to be renamed. |
NOTE: The sample AML code below can be copied and pasted directly into the Steps panel of the Task Builder. |
Description: Rename registry value "bogusName" in key "HKEY_LOCAL_MACHINE\SOFTWARE\Network Automation\10\bugusKeyName" to "Whatever".
<AMREGISTRY ACTIVITY="rename_value" KEY="HKEY_LOCAL_MACHINE\SOFTWARE\Network Automation\10\bugusKeyName" VALUE="bogusName" VALUEDATA="Whatever" /> |