
|
|
Get SteelArrow!
|
 |
 |
 |
<SAWRITEREG/>
 |
 |
 |
 |
 |
| |
| |
| Secure Tag |
| Return to Tag List |
| |
|
The WRITEREG tag offers access to the Windows registry for adding, updating and deleting
values.
|
| |
Attributes:
| ACTION | DELETE or WRITE (default) |
| KEY | any high level key value (default is HKEY_LOCAL_MACHINE) |
| SUBKEY | subkey name |
| PARAM | parameter under subkey |
| VALUE | new or update value |
| NAME | succes or failure (TRUE=success; FALSE=failure) |
|
|
| |
|
The following is an example of WRITEREG;
|
| |
<!--- Write a registry value --->
<SAWRITEREG KEY="HKEY_LOCAL_MACHINE" SUBKEY=subKey
PARAM="username" VALUE=PARAM.username>
<!--- Delete a registry value --->
<SAWRITEREG KEY="HKEY_LOCAL_MACHINE" SUBKEY=subKey ACTION="delete">
|
|
|
|