reg-copy: add page

This commit is contained in:
pxgamer 2018-01-19 13:16:36 +00:00 committed by Agniva De Sarker
parent 94c290ca4d
commit d2af195fd7

15
pages/windows/reg-copy.md Normal file
View File

@ -0,0 +1,15 @@
# reg copy
> Copy keys and their values in the registry.
- Copy a registry key to a new registry location:
`reg copy {{old_key_name}} {{new_key_name}}`
- Copy a registry key recursively to a new registry location:
`reg copy {{old_key_name}} {{new_key_name}} /s`
- Forcefully copy a registry key without a prompt:
`reg copy {{old_key_name}} {{new_key_name}} /f`