* utils.xml (regtool): Clarify save action. Add description for
restore action. * new-features.xml (ov-new1.7.34): Add regtool restore.
This commit is contained in:
parent
38602c8697
commit
7656f3f4d7
|
@ -1,3 +1,9 @@
|
||||||
|
2015-02-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* utils.xml (regtool): Clarify save action. Add description for
|
||||||
|
restore action.
|
||||||
|
* new-features.xml (ov-new1.7.34): Add regtool restore.
|
||||||
|
|
||||||
2015-02-03 Corinna Vinschen <corinna@vinschen.de>
|
2015-02-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* Throughout, replace http with https as far as cygwin.com and
|
* Throughout, replace http with https as far as cygwin.com and
|
||||||
|
|
|
@ -35,6 +35,10 @@ Add -k/--remove-default option to setfacl to remove all default ACL entries
|
||||||
from an ACL.
|
from an ACL.
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
|
|
||||||
|
<listitem><para>
|
||||||
|
Add restore action to regtool.
|
||||||
|
</para></listitem>
|
||||||
|
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
Make gethostbyname2 handle numeric host addresses as well as the
|
Make gethostbyname2 handle numeric host addresses as well as the
|
||||||
reserved domain names "localhost" and "invalid" per RFC 6761.
|
reserved domain names "localhost" and "invalid" per RFC 6761.
|
||||||
|
|
|
@ -1538,7 +1538,8 @@ Actions:
|
||||||
unset KEY\VALUE removes VALUE from KEY
|
unset KEY\VALUE removes VALUE from KEY
|
||||||
load KEY\SUBKEY PATH load hive from PATH into new SUBKEY
|
load KEY\SUBKEY PATH load hive from PATH into new SUBKEY
|
||||||
unload KEY\SUBKEY unload hive and remove SUBKEY
|
unload KEY\SUBKEY unload hive and remove SUBKEY
|
||||||
save KEY\SUBKEY PATH save SUBKEY into new hive PATH
|
save KEY\SUBKEY PATH save SUBKEY into new file PATH
|
||||||
|
restore KEY\SUBKEY PATH restore SUBKEY from file PATH
|
||||||
|
|
||||||
Options for 'list' Action:
|
Options for 'list' Action:
|
||||||
|
|
||||||
|
@ -1567,6 +1568,11 @@ Options for 'set' and 'unset' Actions:
|
||||||
|
|
||||||
-K<c>, --key-separator[=]<c> set key separator to <c> instead of '\'
|
-K<c>, --key-separator[=]<c> set key separator to <c> instead of '\'
|
||||||
|
|
||||||
|
Options for 'restore' action:
|
||||||
|
|
||||||
|
-f, --force restore even if open handles exist at or beneath the location
|
||||||
|
in the registry hierarchy to which KEY\SUBKEY points
|
||||||
|
|
||||||
Other Options:
|
Other Options:
|
||||||
|
|
||||||
-h, --help output usage information and exit
|
-h, --help output usage information and exit
|
||||||
|
@ -1673,7 +1679,13 @@ Example: regtool.exe get '\user\software\Microsoft\Clock\iFormat'
|
||||||
unloads the file and removes the subkey. </para>
|
unloads the file and removes the subkey. </para>
|
||||||
|
|
||||||
<para>The <literal>save</literal> action saves a subkey into a registry
|
<para>The <literal>save</literal> action saves a subkey into a registry
|
||||||
hive. </para>
|
file. Ideally you append the suffix <filename>.reg</filename> to the file
|
||||||
|
so it gets automatically recognized as registry file by
|
||||||
|
<command>Windows Explorer</command>.</para>
|
||||||
|
|
||||||
|
<para>The <literal>restore</literal> action restores a registry subkey
|
||||||
|
from a file saved via the aforementioned <literal>save</literal> action.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para> By default, the last "\" or "/" is assumed to be the separator
|
<para> By default, the last "\" or "/" is assumed to be the separator
|
||||||
between the key and the value. You can use the <literal>-K</literal>
|
between the key and the value. You can use the <literal>-K</literal>
|
||||||
|
|
Loading…
Reference in New Issue