Reg copy


Applies To: Windows XP,Windows Server 2008 R2,Windows Server 2008,Windows 7,Windows Server 2003 R2,Windows Vista,Windows Server 2003,Windows Server 2000

Copies a registry entry to a specified location on the local or remote computer.

For examples of how to use this command, see Examples.

Syntax


Copy Code

reg copy <KeyName1> <KeyName2> [/s] [/f]

Parameters

Parameter

Description

<KeyName1>

Specifies the full path of the subkey to copy. To specify a remote computer, include the computer name (in the format \\ComputerName\) as part of the KeyName. Omitting \\ComputerName\ causes the operation to default to the local computer. The KeyName must include a valid root key. Valid root keys for the local computer are: HKLM, HKCU, HKCR, HKU, and HKCC. If a remote computer is specified, valid root keys are: HKLM and HKU.

<KeyName2>

Specifies the full path of the subkey destination. To specify a remote computer, include the computer name (in the format \\ComputerName\) as part of the KeyName. Omitting \\ComputerName\ causes the operation to default to the local computer. The KeyName must include a valid root key. Valid root keys for the local computer are: HKLM, HKCU, HKCR, HKU, and HKCC. If a remote computer is specified, valid root keys are: HKLM and HKU.

/s

Copies all subkeys and entries under the specified subkey.

/f

Copies the subkey without prompting for confirmation.

/?

Displays help for reg copy at the command prompt.

Remarks

Value

Description

0

Success

1

Failure

Examples

To copy all subkeys and values under the key MyApp to the key SaveMyApp, type:


Copy Code

REG COPY HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp /s

To copy all values under the key MyCo on the computer named ZODIAC to the key MyCo1 on the current computer, type:


Copy Code

REG COPY \\ZODIAC\HKLM\Software\MyCo HKLM\Software\MyCo1

Additional references

Command-Line Syntax Key