Movatterモバイル変換


[0]ホーム

URL:


Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft EdgeMore info about Internet Explorer and Microsoft Edge
Table of contentsExit focus mode

reg add

Feedback

In this article

Adds a new subkey or entry to the registry.

Syntax

reg add <keyname> [/v valuename | /ve] [/t datatype] [/s separator] [/d data] [/f] [/reg:32 | /reg:64]

Parameters

ParameterDescription
<keyname>Specifies the full path of the subkey or entry to be added. To specify a remote computer, include the computer name (in the format\\<computername>\) as part of thekeyname. Omitting\\<computername>\ causes the operation to default to the local computer. Thekeyname must include a valid root key. Valid root keys for the local computer are:
  • HKCR (HKEY_CLASSES_ROOT)
  • HKCU (HKEY_CURRENT_USER)
  • HKLM (HKEY_LOCAL_MACHINE)
  • HKU (HKEY_USERS)
  • HKCC (HKEY_CURRENT_CONFIG)

If a remote computer is specified, valid root keys are:HKLM andHKU. If the registry key name contains a space, enclose the key name in quotes.
/v<Valuename>Specifies the name of the add registry entry.
/veSpecifies that the added registry entry has a null value.
/t<Type>Specifies the type for the registry entry.Type must be one of the following:
  • REG_SZ
  • REG_MULTI_SZ
  • REG_DWORD_BIG_ENDIAN
  • REG_DWORD
  • REG_BINARY
  • REG_DWORD_LITTLE_ENDIAN
  • REG_LINK
  • REG_FULL_RESOURCE_DESCRIPTOR
  • REG_EXPAND_SZ
/s<Separator>Specifies the character to be used to separate multiple instances of data when theREG_MULTI_SZ data type is specified and more than one entry is listed. If not specified, the default separator is\0.
/d<Data>Specifies the data for the new registry entry.
/fAdds the registry entry without prompting for confirmation.
/reg:32Specifies the key should be accessed using the 32-bit registry view.
/reg:64Specifies the key should be accessed using the 64-bit registry view.
/?Displays help at the command prompt.

Remarks

  • Subtrees can't be added with this operation. This version ofreg doesn't ask for confirmation when adding a subkey.

  • The return values for thereg add operation are:

ValueDescription
0Success
1Failure
  • For theREG_EXPAND_SZ key type, use the caret symbol (^ ) with% inside the /d parameter.

Examples

To add the keyHKLM\Software\MyCo on remote computerABC, type:

reg add \\ABC\HKLM\Software\MyCo

To add a registry entry toHKLM\Software\MyCo with a value namedData, the typeREG_BINARY, and data offe340ead, type:

reg add HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead

To add a multi-valued registry entry toHKLM\Software\MyCo with a value namedMRU, the typeREG_MULTI_SZ, and data offax\0mail\0, type:

reg add HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail\0

To add an expanded registry entry toHKLM\Software\MyCo with a value namedPath, the typeREG_EXPAND_SZ, and data of%systemroot%, type:

reg add HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d ^%systemroot^%

Related links


Feedback

Was this page helpful?

YesNo

In this article

Was this page helpful?

YesNo