mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* reg*: improve pages --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
500 B
500 B
reg copy
Copy keys and their values in the registry. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/reg-copy.
- Copy a registry key to a new registry location:
reg copy {{old_key_name}} {{new_key_name}}
- Copy a registry key recursively (with all [s]ubkeys) to a new registry location:
reg copy {{old_key_name}} {{new_key_name}} /s
- [f]orcefully (without a prompt) copy a registry key:
reg copy {{old_key_name}} {{new_key_name}} /f