任你干av_欧美kkkk7777免费看_国产亚洲视频网站_香蕉看片_久久影视综合_久久99综合_日本少妇在线观看免费视频_亚洲国产剧情在线观看_乱码精品一卡二卡无卡_欧美一级视频在线观看_欧美精品色婷婷五月综合_色婷婷在线精品国自产拍_国产成人高清在线_av官网在线_三级午夜理伦三级老熟人_污视频免费在线播放_无码专区无码专区视频网址_美女在线网站_日本在线精品_凉森玲梦一区二区三区av免费

reg (查詢,修改和操作Windows注冊表)

方磚大叔 發表于 2020-06-17 18:01
瀏覽次數:
在手機上閱讀

reg命令可以從命令行查詢,修改和操作Windows注冊表。

查看英文版

目錄

1 reg 運行系統環境

2 reg 語法 Windows Vista, 7, 8, and 10

3 reg 語法 Windows XP

reg 運行系統環境

Windows xp

Windows vista

Windows 7

Windows 8

Windows 10

reg 語法 Windows Vista, 7, 8, and 10

REG Operation [Parameter...]

操作查詢添加刪除復制保存加載卸載恢復比較導出導入標記之一

參數在下面列出,并且根據“?操作”而有所不同

所有操作(COMPARE除外的返回碼成功都0失敗1


QUERY operation
REG QUERY KeyName [{/v [ValueName]} | /ve] [/s] [/f Data [/k] [/d] [/c] [/e]]
          [/t Type] [/z] [/se Separator] [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。

FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
/v ValueName 查詢特定的注冊表項值。如果省略,則查詢鍵的所有值。僅當使用搜索模式指定/ f選項時,才可以省略ValueName
/ve 查詢默認值或空值名稱(默認)。
/s 遞歸查詢所有子項和值,類似于dir / s
/se Separator REG_MULTI_SZ的輸入數據字符串中指定分隔符(僅1個字符的長度)默認為“?\ 0?”(空字符)作為分隔符。
/f 指定要搜索的數據或模式。如果字符串包含空格,請使用雙引號。默認值為“?*?”(通配符,表示任意數量的任何字符)。
/k 指定僅搜索鍵名。
/d 指定僅搜索鍵值數據。
/c 指定搜索區分大小寫。(默認情況下,搜索不區分大小寫。)
/e 指定僅返回完全匹配項。(默認情況下,將返回所有匹配項。)
/t 指定注冊表值數據類型。有效類型為REG_SZREG_MULTI_SZREG_EXPAND_SZREG_DWORDREG_QWORDREG_BINARYREG_NONE(默認情況下,任何類型都是有效的結果。)
/z 詳細:附加顯示值名稱類型的等效數字。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認是64位進程)訪問密鑰。

Examples:

REG QUERY HKLM\Software\Microsoft\ResKit /v Version

顯示注冊表值Version的

REG QUERY \\ABC\HKLM\Software\Microsoft\ResKit\Nt\Setup /s

顯示遠程計算機ABC上注冊表項Setup下的所有子項和值

REG QUERY HKLM\Software\Microsoft\ResKit\Nt\Setup /se #

對于所有類型為REG_MULTI_SZ的?值名稱,顯示所有以“??”為分隔符的子項和值

REG QUERY HKLM /f SYSTEM /t REG_SZ /c /e

在數據類型REG_SZ的?HKLM根目錄下?顯示數據,并區分大小寫并精確出現“?SYSTEM?”?

REG QUERY HKCU /f 0F /d /t REG_BINARY

顯示,以及數據為“的出現0F?”在數據下HKCU根為數據類型REG_BINARY

REG QUERY HKLM\SOFTWARE /ve

HKLM \ SOFTWARE?顯示空值(默認)的數據

ADD operation
REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
        [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
/v 要添加?的值名稱,位于所選Key
/ve 查詢默認值或空值名稱(默認)。
/t Type 指定RegKey數據類型,其中TypeREG_SZREG_MULTI_SZREG_EXPAND_SZREG_DWORDREG_QWORDREG_BINARYREG_NONE之一如果省略,則假定為REG_SZ
/s Separator REG_MULTI_SZ的數據字符串中指定一個字符用作分隔符如果省略,則使用“?\ 0?”(空字符)作為默認分隔符。
/d Data 要分配給注冊表ValueName的數據
/f 強制覆蓋現有注冊表項,而無提示。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。

Examples:

REG ADD \\ABC\HKLM\Software\MyCo

在遠程計算機ABC上添加密鑰HKLM \ Software \ MyCo

REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead

添加一個值(名稱:數據,類型:REG_BINARY,數據:fe340ead)。

REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail

添加一個值(名稱:MRU,類型:REG_MULTI_SZ,數據:fax \ 0mail \ 0 \ 0)。

REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d ^%systemroot^%

添加一個值(名稱:Path,類型:REG_EXPAND_SZ,數據:%systemroot%)。注意:使用擴展字符串內的脫字符號(^)。

DELETE operation
REG DELETE KeyName [/v ValueName | /ve | /va] [/f] [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
ValueName 所選鍵下的值名稱要刪除。省略時,將刪除該鍵下的所有子鍵和值。
/ve 刪除空值名稱的值(默認)。
/va 刪除此鍵下的所有值。
/f 強制刪除而不提示。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。

Examples:

REG DELETE HKLM\Software\MyCo\MyApp\Timeout

刪除注冊表項超時及其所有子項和值。

REG DELETE \\ZODIAC\HKLM\Software\MyCo /v MTU

刪除遠程計算機ZODIACMyCo的注冊表值MTU

COPY operation
REG COPY KeyName1 KeyName2 [/s] [/f] [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
/s 復制所有子項和值。
/f 強制復制而無提示。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。

Examples:

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

將鍵MyApp下的所有子鍵和值復制到鍵SaveMyApp

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

復制項下的所有值MYCOZODIAC到關鍵MyCo1在本地機器上。

SAVE operation
REG SAVE KeyName FileName [/y] [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
FileName 保存數據的目標文件。
/y 強制覆蓋現有文件而無提示。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。

Example:

REG SAVE HKLM\Software\MyCo\MyApp AppBkUp.hiv

將配置單元MyApp保存當前目錄中的文件AppBkUp.hiv中。

LOAD operation
REG LOAD KeyName FileName [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
FileName 要加載的配置單元文件的名稱。您必須使用REG SAVE創建此文件。(請參閱上一節。)
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。

Example:

REG LOAD HKLM\TempHive TempHive.hiv

從文件TempHive.hiv(在當前目錄中)將配置單元數據加載到注冊表位置HKLM \ TempHive中

UNLOAD operation

UNLOAD刪除使用LOAD操作加載的注冊表部分

REG UNLOAD KeyName
KeyName 密鑰名稱,格式為ROOTKEY?\?SubKeyROOTKEY必須是HKLMHKU之一SubKey是要卸載的配置單元的鍵名。

Example:

REG UNLOAD HKLM\TempHive

HKLM中?卸載配置單元TempHive

RESTORE operation
REG RESTORE KeyName FileName [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
FileName 要還原的配置單元文件的名稱。您必須使用REG SAVE創建此文件。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。
REG RESTORE HKLM\Software\Microsoft\ResKit NTRKBkUp.hiv

還原配置單元文件NTRKBkUp.hiv,覆蓋鍵ResKit

COMPARE operation
REG COMPARE KeyName1 KeyName2 [/v ValueName | /ve] [Output] [/s]
            [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
ValueName 所選鍵下的值名稱進行比較。省略時,將比較鍵下的所有值。
/ve 比較空值名稱的值(默認)。
/s 比較所有子項和值。
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。
Output 輸出類型。輸出必須是/ oa/ od?/ os/ on之一

/ oa:輸出所有差異和匹配項。
/ od:僅輸出差異。(默認值。)
/ os:僅匹配輸出。
/ on:無輸出。

REG COMPARE的?返回碼為

  • 0 結果相同
  • 1 無法進行比較.
  • 2 結果不相同

REG COMPARE輸出的?每一行之前的符號

  • =在與FullKey2數據相同的FullKey1數據之前。
  • <在與FullKey2數據不同的FullKey1數據之前。
  • 在與Fullkey1數據不同的FullKey2數據之前。

Examples:

REG COMPARE HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp

將鍵MyApp下的所有值SaveMyApp進行比較

REG COMPARE HKLM\Software\MyCo HKLM\Software\MyCo1 /v Version

比較MyCoMyCo1下的Version的值

REG COMPARE \\ZODIAC\HKLM\Software\MyCo \\. /s

ZODIACHKLM \ Software \ MyCo下的所有子項和值與本地計算機上的相同項進行比較。

EXPORT operation
REG EXPORT KeyName FileName [/y] [/reg:32 | /reg:64]
KeyName 密鑰名稱,格式為[?\\?Machine?\?]?FullKey,其中Machine是遠程計算機的可選名稱。省略\\?Machine?\默認為當前計算機。遠程計算機上僅提供HKLM和HKU。
FullKey采用ROOTKEY?\?SubKey的形式,其中ROOTKEYHKLMHKCUHKCRHKUHKCC之一,而SubKey是所選ROOTKEY下的注冊表項的全名
FileName 要導出的磁盤文件的名稱。
/y 強制覆蓋現有文件而無提示。
/reg:32 指定應使用32位注冊表視圖訪問密鑰,這是32位進程的默認視圖。
/reg:64 指定應使用64位注冊表視圖訪問密鑰,這是64位進程的默認視圖。

Example:

REG EXPORT HKLM\Software\MyCo\MyApp AppBkUp.reg

將密鑰MyApp的所有子項和值導出到文件AppBkUp.reg

IMPORT operation
REG IMPORT FileName [/reg:32 | /reg:64]
FileName The name of the file to import (local machine only).
/reg:32 指定應使用32位注冊表視圖(默認為32位進程)訪問密鑰。
/reg:64 指定應使用64位注冊表視圖(默認為64位進程)訪問密鑰。

Example:

REG IMPORT AppBkUp.reg

從文件AppBkUp.reg導入注冊表項

FLAGS operation
REG FLAGS KeyName [QUERY | SET FlagName...] [/reg:32 | /reg:64]
KeyName 格式為HKLM \ Software?[?\?SubKey?]的注冊表項(此操作僅在本地計算機上可用。)SubKeyHKLM \ Software下注冊表項的全名
QUERY 顯示鍵KeyName的當前標志
SET FlagName... 設置鍵KeyName的標志FlagNameDONT_VIRTUALIZEDONT_SILENT_FAILRECURSE_FLAG的零個或多個如果指定SET參數,則將設置所有指定的FlagName,并且將清除所有未指定的FlagName
/reg:32 指定應使用32位注冊表視圖訪問密鑰。對于32位進程,此開關是默認設置。
/reg:64 指定應使用64位注冊表視圖訪問密鑰。對于64位進程,此開關是默認設置。

Examples:

REG FLAGS HKLM\Software\MyCo\MyApp QUERY

顯示鍵MyApp的當前標志。

REG FLAGS HKLM\Software\MyCo\MyApp SET DONT_VIRTUALIZE /s

MyApp及其所有子項?設置DONT_VIRTUALIZE標志(并清除DONT_SILENT_FAILRECURSE_FLAG


REG Operation [Parameter...]

The Operation is one of QUERY, ADD, DELETE, COPY, SAVE, LOAD, UNLOAD, RESTORE, COMPARE, EXPORT, IMPORT, and FLAGS.

Parameters are listed below, and vary depending on Operation.

The return code for all operations (except COMPARE) is 0 for success or 1 for failure.

Note

For more information about the /reg:32 and /reg:64 parameters, including when to use them and how they interact with the registry, see this Microsoft support document.

QUERY operation
REG QUERY KeyName [{/v [ValueName]} | /ve] [/s] [/f Data [/k] [/d] [/c] [/e]]
          [/t Type] [/z] [/se Separator] [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
/v ValueName Queries for specific registry key values. If omitted, all values for the key are queried. ValueName can be omitted only when the /f option is specified with a pattern to search.
/ve Queries for the default value, or an empty value name (default).
/s Queries all subkeys and values recursively, similar to dir /s.
/se Separator Specifies the separator (length of 1 character only) in your in data string for REG_MULTI_SZ. Defaults to "\0" (null character) as the separator.
/f Specifies the data or pattern to be searched. Use double quotes if a string contains spaces. The default is "*" (the wildcard representing any number of any characters).
/k Specifies to search in key names only.
/d Specifies to search in key-value data only.
/c Specifies that the search is case-sensitive. (By default, searches are case-insensitive.)
/e Specifies to return only exact matches. (By default, all the matches are returned.)
/t Specifies registry value data type. Valid types are REG_SZ, REG_MULTI_SZ, REG_EXPAND_SZ, REG_DWORD, REG_QWORD, REG_BINARY, REG_NONE. (By default, any type is a valid result.)
/z Verbose: Additionally shows the numeric equivalent for the type of the valuename.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view the бк default for 64-bit processes.

Examples:

REG QUERY HKLM\Software\Microsoft\ResKit /v Version

Displays the value of the registry value Version.

REG QUERY \\ABC\HKLM\Software\Microsoft\ResKit\Nt\Setup /s

Displays all subkeys and values under the registry key Setup on remote machine ABC.

REG QUERY HKLM\Software\Microsoft\ResKit\Nt\Setup /se #

Displays all the subkeys and values with "#" as the separator, for all valuenames whose type is REG_MULTI_SZ.

REG QUERY HKLM /f SYSTEM /t REG_SZ /c /e

Displays Key, Value, and Data with case sensitive and exact occurrences of "SYSTEM" under HKLM root for the data type REG_SZ.

REG QUERY HKCU /f 0F /d /t REG_BINARY

Displays Key, Value, and Data for the occurrences of "0F" in data under HKCU root for the data type REG_BINARY.

REG QUERY HKLM\SOFTWARE /ve

Displays Value and Data for the empty value (the default) under HKLM\SOFTWARE.

ADD operation
REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
        [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
/v The value name, under the selected Key, to add.
/ve Queries for the default value, or empty value name (default).
/t Type Specify RegKey data type, where Type is one of REG_SZ, REG_MULTI_SZ, REG_EXPAND_SZ, REG_DWORD, REG_QWORD, REG_BINARY, or REG_NONE. If omitted, REG_SZ is assumed.
/s Separator Specify one character to use as the separator in the data string for REG_MULTI_SZ. If omitted, use "\0" (null character) is the default separator.
/d Data The data to assign to the registry ValueName being added.
/f Force overwriting the existing registry entry without prompt.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Examples:

REG ADD \\ABC\HKLM\Software\MyCo

Adds a key HKLM\Software\MyCo on remote machine ABC

REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead

Adds a value (name: Data, type: REG_BINARY, data: fe340ead).

REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail

Adds a value (name: MRU, type: REG_MULTI_SZ, data: fax\0mail\0\0).

REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d ^%systemroot^%

Adds a value (name: Path, type: REG_EXPAND_SZ, data: %systemroot%). Note: Use the caret symbol ( ^ ) inside the expand string.

DELETE operation
REG DELETE KeyName [/v ValueName | /ve | /va] [/f] [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
ValueName The value name, under the selected key, to delete. When omitted, all subkeys and values under the key are deleted.
/ve Delete the value of empty value name (default).
/va Delete all values under this key.
/f Forces the deletion without prompt.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Examples:

REG DELETE HKLM\Software\MyCo\MyApp\Timeout

Deletes the registry key Timeout and of all its subkeys and values.

REG DELETE \\ZODIAC\HKLM\Software\MyCo /v MTU

Deletes the registry value MTU under MyCo on remote machine ZODIAC.

COPY operation
REG COPY KeyName1 KeyName2 [/s] [/f] [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
/s Copies all subkeys and values.
/f Forces the copy without prompt.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Examples:

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

Copies all subkeys and values under the key MyApp to the key SaveMyApp.

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

Copies all values under the key MyCo on ZODIAC to the key MyCo1 on the local machine.

SAVE operation
REG SAVE KeyName FileName [/y] [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
FileName The destination file for the saved data.
/y Force overwriting the existing file without prompt.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Example:

REG SAVE HKLM\Software\MyCo\MyApp AppBkUp.hiv

Saves the hive MyApp to the file AppBkUp.hiv in the current directory.

LOAD operation
REG LOAD KeyName FileName [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
FileName The name of the hive file to load. You must use REG SAVE to create this file. (See the previous section.)
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Example:

REG LOAD HKLM\TempHive TempHive.hiv

Loads hive data from the file TempHive.hiv (in the current directory) into the registry location HKLM\TempHive.

UNLOAD operation

UNLOAD removes a section of the registry that was loaded using the LOAD operation.

REG UNLOAD KeyName
KeyName The name of a key in the form ROOTKEY\SubKey. ROOTKEY must be one of HKLM or HKU. SubKey is the key name of the hive to unload.

Example:

REG UNLOAD HKLM\TempHive

Unloads the hive TempHive in HKLM.

RESTORE operation
REG RESTORE KeyName FileName [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
FileName The name of the hive file to restore. You must use REG SAVE to create this file.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Example:

REG RESTORE HKLM\Software\Microsoft\ResKit NTRKBkUp.hiv

Restores the hive file NTRKBkUp.hiv, overwriting the key ResKit.

COMPARE operation
REG COMPARE KeyName1 KeyName2 [/v ValueName | /ve] [Output] [/s]
            [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ defaults to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
ValueName The value name, under the selected key, to compare. When omitted, all values under the key are compared.
/ve Compare the value of empty value name (default).
/s Compare all subkeys and values.
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.
Output Output type. Output must be one of /oa, /od /os, or /on.

/oa: Output all differences and matches.
/od: Output only differences. (Default.)
/os: Output only matches.
/on: No output.

Return codes for REG COMPARE are:

  • 0 if the result compared is identical.
  • 1 if a comparison was impossible.
  • 2 if the result compared is different.

Symbols preceding each line of REG COMPARE's output:

  • = precedes FullKey1 data that is the same as FullKey2 data.
  • < precedes FullKey1 data that is different than FullKey2 data.
  • > precedes FullKey2 data that is different than Fullkey1 data.

Examples:

REG COMPARE HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp

Compares all values under the key MyApp with SaveMyApp.

REG COMPARE HKLM\Software\MyCo HKLM\Software\MyCo1 /v Version

Compares the value of Version under the key MyCo and MyCo1.

REG COMPARE \\ZODIAC\HKLM\Software\MyCo \\. /s

Compares all subkeys and values under HKLM\Software\MyCo on ZODIAC with the same key on the local machine.

EXPORT operation
REG EXPORT KeyName FileName [/y] [/reg:32 | /reg:64]
KeyName The name of a key in the form of [\\Machine\]FullKey, where Machine is the optional name of a remote machine. Omitting \\Machine\ default to the current machine. Only HKLM and HKU are available on remote machines.

FullKey takes the form of ROOTKEY\SubKey where ROOTKEY is one of HKLM, HKCU, HKCR, HKU, or HKCC, and SubKey is the full name of a registry key under the selected ROOTKEY.
FileName The name of the disk file to export.
/y Force overwriting the existing file without prompt.
/reg:32 Specifies the key should be accessed using the 32-bit registry view, which is the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view, which is the default for 64-bit processes.

Example:

REG EXPORT HKLM\Software\MyCo\MyApp AppBkUp.reg

Exports all subkeys and values of the key MyApp to the file AppBkUp.reg

IMPORT operation
REG IMPORT FileName [/reg:32 | /reg:64]
FileName The name of the file to import (local machine only).
/reg:32 Specifies the key should be accessed using the 32-bit registry view бк the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view бк the default for 64-bit processes.

Example:

REG IMPORT AppBkUp.reg

Imports registry entries from the file AppBkUp.reg.

FLAGS operation
REG FLAGS KeyName [QUERY | SET FlagName...] [/reg:32 | /reg:64]
KeyName Registry key of the form HKLM\Software[\SubKey]. (This operation is available on local machines only.) SubKey is the full name of a registry key under HKLM\Software.
QUERY Display the current flags of key KeyName.
SET FlagName... Set flags for key KeyName. FlagName is zero or more of DONT_VIRTUALIZE, DONT_SILENT_FAIL, and RECURSE_FLAG. If the SET parameter is specified, any of these FlagNames specified will be set, and any not specified will be cleared.
/reg:32 Specifies the key should be accessed using the 32-bit registry view. This switch is the default for 32-bit processes.
/reg:64 Specifies the key should be accessed using the 64-bit registry view. This switch is the default for 64-bit processes.

Examples:

REG FLAGS HKLM\Software\MyCo\MyApp QUERY

Displays the current flags of the key MyApp.

REG FLAGS HKLM\Software\MyCo\MyApp SET DONT_VIRTUALIZE /s

Sets the DONT_VIRTUALIZE flag (and clears DONT_SILENT_FAIL and RECURSE_FLAG) on MyApp and all its subkeys.

有關/ reg:32和/ reg:64參數的更多信息,包括何時使用它們以及它們如何與注冊表交互,請訪問微軟官方幫助。https://support.microsoft.com/en-us/help/305097/how-to-view-the-system-registry-by-using-64-bit-versions-of-windows

For more information about the /reg:32 and /reg:64 parameters, including when to use them and how they interact with the registry, see this Microsoft support document. https://support.microsoft.com/en-us/help/305097/how-to-view-the-system-registry-by-using-64-bit-versions-of-windows

查看英文版

查看中文版

reg 語法 Windows XP

REG Operation [Parameters]
Operation is one of QUERYADDDELETECOPYSAVELOADUNLOADRESTORECOMPAREEXPORT, and IMPORT. 參數  在下面列出,并根據“ 操作”而有所不同  。 The return code for all operations (except 所有操作(COMPARE除外)的返回碼   成功都為  0或 失敗為  1。 for failure. QUERY 操作(Windows XP)
REG QUERY KeyName [/v ValueName | /ve] [/s]
KeyName 格式[  Machine  ] FullKey的注冊表項位置,其中  Machine  是遠程計算機的名稱。如果   省略 Machine ,則默認使用本地計算機。 FullKey  采用ROOTKEY  SubKey的形式  。 ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。(只有  HKLM  和  HKU  在遠程計算機上可用。)  SubKey  是所選項下注冊表項的全名。 根密鑰
/v 查詢特定的注冊表項。
ValueName 在所選鍵下要查詢的名稱。如果省略,則查詢鍵下的所有值。
/ve 查詢默認值或空值名稱。
/s 查詢所有子項和值。

ADD 操作 (Windows XP)

REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
KeyName 格式[  Machine  ] FullKey的注冊表項位置,其中  Machine  是遠程計算機的名稱。如果   省略 Machine ,則默認使用本地計算機。 FullKey  采用ROOTKEY  SubKey的形式  。 ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。(只有  HKLM  和  HKU  在遠程計算機上可用。)  SubKey  是所選項下注冊表項的全名。 根密鑰
/v ValueName ValueName  是在所選鍵下要添加的值名稱。
/ve 為鍵添加一個空的值名稱。
/t Type 指定要添加的數據類型。 類型  是  REG_SZ,  REG_MULTI_SZ,  REG_DWORD_BIG_ENDIAN,  REG_DWORD,  REG_BINARY,  REG_DWORD_LITTLE_ENDIAN,  REG_NONE和  REG_EXPAND_SZ之一。如果   省略Type, 則假定為  REG_SZ
/s Separator 指定一個字符  Separator,用作REG_MULTI_SZ數據字符串中的分隔符  。如果省略,請使用“ 0”(空字符)作為分隔符。
/d 要分配給注冊表ValueName的數據。
/f 強制覆蓋現有注冊表項,而無提示。

 DELETE 操作(Windows XP)

REG DELETE KeyName [/v ValueName | /ve | /va] [/f]
KeyName 格式[ Machine ] FullKey的注冊表項位置,其中  Machine  是遠程計算機的名稱。如果   省略 Machine ,則默認使用本地計算機。 FullKey  采用ROOTKEY SubKey的形式  。 ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。(只有  HKLM  和  HKU  在遠程計算機上可用。)  SubKey  是所選項下注冊表項的全名。 根密鑰。
ValueName 所選鍵下要刪除的值名稱,如果省略,將刪除該鍵下的所有子鍵和值。
/ve 刪除空值名稱<無名稱>的值
/va 刪除此鍵下的所有值
/f 強制刪除而不提示。

 COPY 操作 (Windows XP)

REG COPY KeyName1 KeyName2 [/s] [/f]
KeyName 格式[  Machine  ] FullKey的注冊表項位置,其中  Machine  是遠程計算機的名稱。如果   省略 Machine ,則默認使用本地計算機。 FullKey  采用ROOTKEY  SubKey的形式  。 ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。(只有  HKLM  和  HKU  在遠程計算機上可用。)  SubKey  是所選項下注冊表項的全名。 根密鑰
/s 復制所有子項和值。
/f 強制復制而無提示。

 SAVE 操作 (Windows XP)

REG SAVE KeyName FileName
KeyName 格式為ROOTKEY SubKey的注冊表項名稱  。 ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。 SubKey  是所選ROOTKEY下的注冊表項的全名  。
FileName 將在其中保存數據的文件的名稱。如果未指定路徑,則在當前目錄中創建文件。

 RESTORE 操作 (Windows XP)

REG RESTORE KeyName FileName
KeyName ROOTKEY  SubKey  (僅本地計算機。)  ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。 SubKey  是注冊表項的全名,應該在其中存儲配置單元文件的數據,從而覆蓋現有項的值和子項。
FileName 要還原的配置單元文件的名稱。您必須使用  REG SAVE  創建此文件。

 LOAD 操作 (Windows XP)

REG LOAD KeyName FileName
KeyName Key 形式鍵名  ROOTKEY  子密鑰  (本地計算機只)  ROOTKEY  是  HKLM  或  HKU。
SubKey 將在其中配置單元文件數據的密鑰名稱,從而創建一個新密鑰。
FileName 要加載的配置單元文件的名稱。您必須使用  REG SAVE  創建此文件。

 UNLOAD 操作 (Windows XP)

REG UNLOAD KeyName
KeyName 格式為ROOTKEY  SubKey的密鑰名稱   (僅本地計算機)  ROOTKEY  是  HKLM  或  HKU,而  SubKey  是要卸載的配置單元的密鑰名稱。

 COMPARE 操作 (Windows XP)

REG COMPARE KeyName1 KeyName2 [/v ValueName | /ve] [Output] [/s]
KeyName1KeyName2 格式為[  Machine  ] FullKey的注冊表項位置,其中  Machine  是遠程計算機的名稱。如果   省略 Machine ,則默認使用本地計算機。 FullKey  采用ROOTKEY  SubKey的形式  。 ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。(只有  HKLM  和  HKU  在遠程計算機上可用。)  FullKey  的格式為  ROOTKEY SubKey,其中  SubKey  是ROOTKEY下的注冊表項的全名  。如果  FullKey2  被省略,  FullKey2  是一樣的  FullKey1
/v ValueName ValueName  是在所選鍵下要比較的值名稱。省略時,將比較鍵下的所有值。
/ve 比較空值名稱的值。
/s 比較所有子項和值。
Output 輸出類型,/ oa,  / od,  / os  / on

/oa: 輸出所有差異和匹配項。
/od: 僅輸出差異(默認)。
/os: 僅輸出匹配項。
/on: 無輸出。
Return codes for REG COMPARE are:
  • 0: 比較項目相同。
  • 1: 比較失敗。
  • 2: 比較項目不同。

EXPORT 操作 (Windows XP)

REG EXPORT KeyName FileName
Keyname Key ROOTKEY  SubKey的鍵名  。(僅限本地計算機。)  ROOTKEY  是  HKLM,  HKCU,  HKCR,  HKU和  HKCC之一。 SubKey  是所選ROOTKEY下的注冊表項的全名  。
FileName 要導出的磁盤文件的名稱

 IMPORT 操作 (Windows XP)

REG IMPORT FileName

FileName  要導入的磁盤文件的名稱(僅本地計算機)。


示例

以下示例使用Windows Vista,7、8和10中的reg語法。

REG QUERY HKLM\Software\Microsoft\ResKit\Nt\Setup /s
顯示注冊表值Version的值  。
REG QUERY HKLMSoftwareMicrosoftResKitNtSetup /s
顯示注冊表項Setup下的所有子項和值  。
REG ADD \\ABC\HKLM\Software\MyCo
在遠程計算機ABC上添加密鑰HKLM Software MyCo  。
REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead
添加一個值(名稱:  Data,類型:  REG_BINARY,數據:  fe340ead)。
REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail
添加一個值(名稱:  MRU,類型:  REG_MUTLI_SZ,數據:  Fax  0 mail)。
REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d %%systemroot%%
添加一個值(名稱:  Path,類型:  REG_EXPAND_SZ,數據:  %systemroot%)。注意: 在擴展字符串中使用雙百分數(  %%)。
REG DELETE HKLM\Software\MyCo\MyApp\Timeout
刪除注冊表項  超時  及其所有子項和值。
REG DELETE \\ZODIAC\HKLM\Software\MyCo /v MTU
刪除注冊表值  MTU  下  MYCO  上  ZODIAC
REG COPY HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp /s
將鍵MyApp下的所有子鍵和值復制   到鍵  SaveMyApp
REG COPY \\ZODIAC\HKLM\Software\MyCo HKLM\Software\MyCo1
復制項下的所有值  MYCO  上  ZODIAC  到關鍵  MyCo1  在當前機器上。
REG SAVE HKLM\Software\MyCo\MyApp AppBkUp.hiv

將配置單元MyApp保存   到 當前文件夾中的文件  AppBkUp.hiv中。

REG RESTORE HKLM\Software\Microsoft\ResKit NTRKBkUp.hiv
恢復文件  NTRKBkUp.hiv  覆蓋鍵  ResKit
REG LOAD HKLM\TempHive TempHive.hiv
將文件TempHive.hiv加載   到密鑰  HKLM TempHive中
REG UNLOAD HKLM\TempHive
在  HKLM中 卸載配置單元  TempHive
REG COMPARE HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp
將鍵MyApp下的所有值   與  SaveMyApp比較
REG COMPARE HKLM\Software\MyCo HKLM\Software\MyCo1 /v Version
比較鍵MyCo  和  MyCo1下的值Version。 
REG COMPARE \\ZODIAC\HKLM\Software\MyCo \\. /s
ZODIAC  上  HKLM Software MyCo下的所有子項和值   與當前計算機上的相同項進行比較。
REG EXPORT HKLM\Software\MyCo\MyApp AppBkUp.reg
將密鑰MyApp的所有子項和值導出   到文件  AppBkUp.reg中
REG IMPORT AppBkUp.reg
從文件AppBkUp.reg導入注冊表項  。
REG QUERY HKLM\Software\Microsoft\ResKit\Nt\Setup /s
顯示注冊表值Version的值  。
REG QUERY HKLMSoftwareMicrosoftResKitNtSetup /s
顯示注冊表項Setup下的所有子項和值  。
REG ADD \\ABC\HKLM\Software\MyCo
在遠程計算機ABC上添加密鑰HKLM Software MyCo  。
REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead
添加一個值(名稱:  Data,類型:  REG_BINARY,數據:  fe340ead)。
REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail
添加一個值(名稱:  MRU,類型:  REG_MUTLI_SZ,數據:  Fax  0 mail)。
REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d %%systemroot%%
添加一個值(名稱:  Path,類型:  REG_EXPAND_SZ,數據:  %systemroot%)。注意: 在擴展字符串中使用雙百分數(  %%)。
REG DELETE HKLM\Software\MyCo\MyApp\Timeout
刪除注冊表項  超時  及其所有子項和值。
REG DELETE \\ZODIAC\HKLM\Software\MyCo /v MTU
刪除注冊表值  MTU  下  MYCO  上  ZODIAC
REG COPY HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp /s
將鍵MyApp下的所有子鍵和值復制   到鍵  SaveMyApp
REG COPY \\ZODIAC\HKLM\Software\MyCo HKLM\Software\MyCo1
復制項下的所有值  MYCO  上  ZODIAC  到關鍵  MyCo1  在當前機器上。
REG SAVE HKLM\Software\MyCo\MyApp AppBkUp.hiv

將配置單元MyApp保存   到 當前文件夾中的文件  AppBkUp.hiv中。

REG RESTORE HKLM\Software\Microsoft\ResKit NTRKBkUp.hiv
恢復文件  NTRKBkUp.hiv  覆蓋鍵  ResKit
REG LOAD HKLM\TempHive TempHive.hiv
將文件TempHive.hiv加載   到密鑰  HKLM TempHive中
REG UNLOAD HKLM\TempHive
在  HKLM中 卸載配置單元  TempHive
REG COMPARE HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp
將鍵MyApp下的所有值   與  SaveMyApp比較
REG COMPARE HKLM\Software\MyCo HKLM\Software\MyCo1 /v Version
比較鍵MyCo  和  MyCo1下的值Version。 
REG COMPARE \\ZODIAC\HKLM\Software\MyCo \\. /s
ZODIAC  上  HKLM Software MyCo下的所有子項和值   與當前計算機上的相同項進行比較。
REG EXPORT HKLM\Software\MyCo\MyApp AppBkUp.reg
將密鑰MyApp的所有子項和值導出   到文件  AppBkUp.reg中
REG IMPORT AppBkUp.reg
從文件AppBkUp.reg導入注冊表項  。
REG Operation [Parameters]

Operation?is one of?QUERY,?ADD,?DELETE,?COPY,?SAVE,?LOAD,?UNLOAD,?RESTORE,?COMPARE,?EXPORT, and?IMPORT.

Parameters?are listed below and vary depending on?Operation.

The return code for all operations (except?COMPARE) is?0?for success or?1?for failure.

QUERY operation (Windows XP)

REG QUERY KeyName [/v ValueName | /ve] [/s]
KeyName Registry key location of the form [Machine]FullKey, where?Machine?is the name of a remote machine. If?Machine?is omitted, the local machine is used by default.?FullKey?takes the form?ROOTKEYSubKey.?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC. (Only?HKLM?and?HKU?are available on remote machines.)?SubKey?is the full name of a registry key under the selected?ROOTKEY.
/v Query for a specific registry key.
ValueName The name, under the selected key, to query. If omitted, all values under the key are queried.
/ve Query the default value or empty value name.
/s Query all subkeys and values.

ADD operation (Windows XP)

REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
KeyName Registry key location of the form [Machine]FullKey, where?Machine?is the name of a remote machine. If?Machine?is omitted, the local machine is used by default.?FullKey?takes the form?ROOTKEYSubKey.?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC. (Only?HKLM?and?HKU?are available on remote machines.)?SubKey?is the full name of a registry key under the selected?ROOTKEY.
/v?ValueName ValueName?is the value name, under the selected key, to add.
/ve Adds an empty value namefor the key.
/t?Type Specify the type of data to add.?Type?is one of?REG_SZ,?REG_MULTI_SZ,?REG_DWORD_BIG_ENDIAN,?REG_DWORD,?REG_BINARY,?REG_DWORD_LITTLE_ENDIAN,?REG_NONE, and?REG_EXPAND_SZ. If?Type?is omitted,?REG_SZ?is assumed.
/s?Separator Specify a single character,?Separator, to use as the separator in your data string for?REG_MULTI_SZ. If omitted, use "" (the null character) as the separator.
/d The data to assign to the registry?ValueName?being added.
/f Force overwriting the existing registry entry without prompt.

DELETE operation (Windows XP)

REG DELETE KeyName [/v ValueName | /ve | /va] [/f]
KeyName Registry key location of the form [Machine]FullKey, where?Machine?is the name of a remote machine. If?Machine?is omitted, the local machine is used by default.?FullKey?takes the form?ROOTKEYSubKey.?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC. (Only?HKLM?and?HKU?are available on remote machines.)?SubKey?is the full name of a registry key under the selected?ROOTKEY.
ValueName The value name, under the selected key, to delete when omitted, all subkeys and values under the key are deleted.
/ve Delete the value of empty value name
/va Delete all values under this key
/f Force the deletion without prompt.

COPY operation (Windows XP)

REG COPY KeyName1 KeyName2 [/s] [/f]
KeyName Registry key location of the form [Machine]FullKey, where?Machine?is the name of a remote machine. If?Machine?is omitted, the local machine is used by default.?FullKey?takes the form?ROOTKEYSubKey.?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC. (Only?HKLM?and?HKU?are available on remote machines.)?SubKey?is the full name of a registry key under the selected?ROOTKEY.
/s Copy all subkeys and values.
/f Force the copy without prompt.

SAVE operation (Windows XP)

REG SAVE KeyName FileName
KeyName Registry key name of the form?ROOTKEYSubKey.?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC.?SubKey?is the full name of a registry key under the selected?ROOTKEY.
FileName The name of the file where the data will be saved. If no path is specified, the file is created in the current directory.

RESTORE operation (Windows XP)

REG RESTORE KeyName FileName
KeyName ROOTKEYSubKey?(local machine only.)?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC.?SubKey?is the full name of a registry key where the hive file's data should be stored, overwriting the existing key's values and subkeys.
FileName The name of the hive file to restore. You must use?REG SAVE?to create this file.

LOAD operation (Windows XP)

REG LOAD KeyName FileName
KeyName Key name in the form?ROOTKEYSubKey?(local machine only)?ROOTKEY?is?HKLM?or?HKU.
SubKey The name of the key where the hive file's data will be loaded, creating a new key.
FileName The name of the hive file to load. You must use?REG SAVE?to create this file.

UNLOAD operation (Windows XP)

REG UNLOAD KeyName
KeyName Key name in the form?ROOTKEYSubKey?(local machine only)?ROOTKEY?is?HKLM?or?HKU, and?SubKey?is the key name of the hive to unload.

COMPARE operation (Windows XP)

REG COMPARE KeyName1 KeyName2 [/v ValueName | /ve] [Output] [/s]
KeyName1,?KeyName2 Registry key locations of the form [Machine]FullKey, where?Machine?is the name of a remote machine. If?Machine?is omitted, the local machine is used by default.?FullKey?takes the form?ROOTKEYSubKey.?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC. (Only?HKLM?and?HKU?are available on remote machines.)?FullKey?takes the form?ROOTKEYSubKey, where?SubKey?is the full name of a registry key under?ROOTKEY. If?FullKey2?is omitted,?FullKey2?is the same as?FullKey1.
/v?ValueName ValueName?is the value name, under the selected key, to compare. When omitted, all values under the key are compared.
/ve Compare the value of empty value name.
/s Compare all subkeys and values.
Output Output type, which is one of?/oa,?/od,?/os, and?/on.

/oa: Output all differences and matches.
/od: Output only differences (default).
/os: Output only matches.
/on: No output.

Return codes for?REG COMPARE?are:

  • 0: compared items are identical.
  • 1: comparison failed.
  • 2: compared items are different.

EXPORT operation (Windows XP)

REG EXPORT KeyName FileName
Keyname Key name of the form?ROOTKEYSubKey. (Local machine only.)?ROOTKEY?is one of?HKLM,?HKCU,?HKCR,?HKU, and?HKCC.?SubKey?is the full name of a registry key under the selected?ROOTKEY.
FileName The name of the disk file to export.

IMPORT operation (Windows XP)

REG IMPORT FileName
FileName The name of the disk file to import (local machine only).

Examples

The following examples use the modern reg syntax found in Windows Vista, 7, 8, and 10.

REG QUERY HKLMSoftwareMicrosoftResKit /v Version

Displays the value of the registry value?Version.

REG QUERY HKLMSoftwareMicrosoftResKitNtSetup /s

Displays all subkeys and values under the registry key?Setup.

REG ADD ABCHKLMSoftwareMyCo

Adds a key HKLMSoftwareMyCo on remote machine?ABC.

REG ADD HKLMSoftwareMyCo /v Data /t REG_BINARY /d fe340ead

Adds a value (name:?Data, type:?REG_BINARY, data:?fe340ead).

REG ADD HKLMSoftwareMyCo /v MRU /t REG_MULTI_SZ /d faxmail

Adds a value (name:?MRU, type:?REG_MUTLI_SZ, data:?faxmail).

REG ADD HKLMSoftwareMyCo /v Path /t REG_EXPAND_SZ /d %%systemroot%%

Adds a value (name:?Path, type:?REG_EXPAND_SZ, data:?%systemroot%). Note: Use the double percentage (?%%?) inside the expand string.

REG DELETE HKLMSoftwareMyCoMyAppTimeout

Deletes the registry key?Timeout?and its all subkeys and values.

REG DELETE ODIACHKLMSoftwareMyCo /v MTU

Deletes the registry value?MTU?under?MyCo?on?ZODIAC.

REG COPY HKLMSoftwareMyCoMyApp HKLMSoftwareMyCoSaveMyApp /s

Copies all subkeys and values under the key?MyApp?to the key?SaveMyApp.

REG COPY ODIACHKLMSoftwareMyCo HKLMSoftwareMyCo1

Copies all values under the key?MyCo?on?ZODIAC?to the key?MyCo1?on the current machine.

REG SAVE HKLMSoftwareMyCoMyApp AppBkUp.hiv

Saves the hive?MyApp?to the file?AppBkUp.hiv?in the current folder.

REG RESTORE HKLMSoftwareMicrosoftResKit NTRKBkUp.hiv

Restores the file?NTRKBkUp.hiv?overwriting the key?ResKit.

REG LOAD HKLMTempHive TempHive.hiv

Loads the file?TempHive.hiv?to the key?HKLMTempHive.

REG UNLOAD HKLMTempHive

Unloads the hive?TempHive?in?HKLM.

REG COMPARE HKLMSoftwareMyCoMyApp HKLMSoftwareMyCoSaveMyApp

Compares all values under the key?MyApp?with?SaveMyApp

REG COMPARE HKLMSoftwareMyCo HKLMSoftwareMyCo1 /v Version

Compares the value Version under the key?MyCo?and?MyCo1

REG COMPARE ODIACHKLMSoftwareMyCo . /s

Compares all subkeys and values under?HKLMSoftwareMyCo?on?ZODIAC?with the same key on the current machine.

REG EXPORT HKLMSoftwareMyCoMyApp AppBkUp.reg

Exports all subkeys and values of the key?MyApp?to the file?AppBkUp.reg.

REG IMPORT AppBkUp.reg

Imports registry entries from the file?AppBkUp.reg.

查看英文版

查看中文版

其他命令行

rd/rmdir | ren | robocopy | route | runas |

如此好文,分享給朋友
發表評論
驗證碼:
評論列表
共0條
主站蜘蛛池模板: 重庆屯茂机械有限公司| 广州机械自动化有限公司| 山东龙腾机械有限公司| 兰州华诚石化机械制造有限公司 | 无锡沃利数控机械有限公司| 日照港达船舶重工有限公司| 浙江为尚机械有限公司| 烟台绿林机械设备制造有限公司| 新世纪机械有限公司| 新华机械制造有限公司| 上海辰品食品机械有限公司 | 东莞大兴发机械有限公司| 江苏鑫林钢铁有限公司| 福建三联机械有限公司| 青岛日川精密机械有限公司| 湖北天腾重型机械制造有限公司| 温州轻工机械有限公司| 北京大铭世进机械设备有限公司 | 天宇机械制造有限公司| 沈阳斗山工程机械有限公司| 郑州中嘉重工有限公司| 济南包装机械械有限公司| 江苏大明重工有限公司| 烟台微特机械有限公司| 浙江耐士伦机械有限公司| 快克数控机械有限公司| 温州市机械有限公司| 天津大强钢铁有限公司| 无锡海龙机械有限公司| 广州萱裕机械有限公司| 北京欧力源机械有限公司| 广州新浪爱拓化工机械有限公司 | 潍坊天洁机械有限公司| 营口金辰机械有限公司| 无锡六叶机械有限公司| 山东瑞浩重型机械有限公司| 襄阳博亚机械有限公司| 浙江中兴机械制造有限公司| 邢台正佳机械制造有限公司| 新疆汇合钢铁有限公司| 北京北宇机械设备有限公司| 新金山钢铁有限公司| 阿尔法起重机有限公司| 洛阳中德重工有限公司| 扬州高标机械有限公司| 苏州勤堡精密机械有限公司| 铜陵市富鑫钢铁有限公司| 杭州康发塑料机械有限公司| 德林机械制造有限公司| 河南一重起重机有限公司 | 济南金梭机械制造有限公司| 江苏润山机械有限公司| 广州闽欣机械设备有限公司| 江苏佳力起重机械制造有限公司| 河南胜飞石油机械有限公司| 山东博杰重型工程机械有限公司 | 衢州巨鑫机械有限公司| 江苏双友重型机械有限公司| 苏州君驰联动机械有限公司| 台一精工机械有限公司| 东莞市台铭数控机械有限公司 | 台州宏汇机械有限公司| 湖南 机械有限公司| 上海昊宇机械有限公司| 山东誉亚大豆机械制造有限公司 | 西得乐机械有限公司| 高峰机械工业有限公司| 江苏力威机械有限公司| 江苏精明机械有限公司| 辽阳筑路机械有限公司| 常州好迪机械有限公司| 山东宇龙机械有限公司| 东营市机械有限公司| 秦皇岛 机械设备有限公司| 新乡市新久振动机械有限公司 | 青岛金福鑫塑料机械有限公司 | 山东 包装机械有限公司| 山东岳峰起重机械有限公司 | 江苏医疗机械有限公司| 郑州志乾机械设备有限公司| 宁波博旺机械有限公司| 江苏中闽钢铁有限公司| 新风工程机械有限公司| 宁波恒威机械有限公司| 温州市润新机械制造有限公司| 洛阳精密机械有限公司| 秦皇岛机械有限公司| 北京龙泰机械设备安装有限公司 | 渤海重工管道有限公司| 泉州金鹰机械有限公司| 瑞利包装机械有限公司| 湖南省湘粮机械制造有限公司| 河北圣和农业机械有限公司| 太原重型机械有限公司| 北京大铭世进机械设备有限公司| 沈阳维用精密机械有限公司| 台州瑞达机械有限公司| 山东 机械制造有限公司| 淄博推进化工机械有限公司| 佛山市宝陶机械设备有限公司| 长城重工机械有限公司| 广州市市政工程机械施工有限公司| 合肥明泰机械施工有限公司| 湖北江汉重工有限公司| 烟台石油机械有限公司| 德清泰德机械有限公司| 昆山机械制造有限公司| 上海化工机械厂有限公司| 重庆墨龙机械有限公司| 云南机械设备有限公司| 华新机械有限公司官网| 浙江美格机械有限公司| 新美星包装机械有限公司| 沈阳机械设备有限公司| 南昌全球机械有限公司| 山东机械制造有限公司| 北京京民兴机械设备有限公司| 重庆川口机械有限公司| 宣城 机械有限公司| 安徽远鸿机械有限公司| 山东祥远机械有限公司| 南丰 机械有限公司| 杭州红磊机械有限公司| 嘉兴敏实机械有限公司| 广州泽比机械设备有限公司| 杭州金鸥机械有限公司| 张家港长力机械有限公司| 东莞三机械有限公司| 全氏食品机械(上海)有限公司| 潍坊凯信机械有限公司| 广州金本机械设备有限公司| 众旭食品机械有限公司| 山东环保机械有限公司| 南昌全球机械有限公司| 佛山市 重工有限公司| 成都杰瑞达工程机械有限公司| 烟台宏兴机械有限公司| 南阳 机械制造有限公司| 合肥方圆机械有限公司| 台州博州机械有限公司| 上海冠隆阀门机械有限公司| 杭州机械设备有限公司| 如东通用机械有限公司| 浙江荣众机械有限公司| 河北燕山钢铁有限公司| 温州市日力轻工机械有限公司| 河南共威机械设备有限公司| 南通中远重工有限公司| 爱克苏州机械有限公司| 青岛隆硕农牧机械制造有限公司| 宁波江北机械有限公司| 华电重工机械有限公司| 张家港斯依格机械设备制造有限公司| 江苏飞耀机械制造有限公司| 华宇机械制造有限公司| 湖北华伟石化机械设备制造有限公司 | 常州赛瑞克包装机械有限公司| 博山 机械有限公司| 注册机械设备有限公司有什么要求| 温州光明印刷机械有限公司| 青岛锻压机械有限公司| 宜兴机械设备有限公司| 莱州市龙骏化工机械有限公司 | 机械租赁有限公司名字| 亚龙机械制造有限公司| 恩格尔注塑机械常州有限公司| 深圳市高郭氏精密机械有限公司| 杭州中亚机械有限公司招聘| 甘肃机械化建设工程有限公司| 深圳市美鹏机械设备有限公司| 京西重工上海有限公司| 江阴市博越机械有限公司| 南通精密机械有限公司| 上海起发实验试剂有限公司| 南通龙威机械有限公司| 张家港市亿利机械有限公司| 海德机械设备有限公司| 马钢合肥钢铁有限公司| 上海沛愉机械制造有限公司 | 重庆箭驰机械有限公司| 临广电气机械有限公司| 杭州誉球机械有限公司| 德蒙压缩机械有限公司| 江阴市礼联机械有限公司| 南京南特精密机械有限公司| 上海山冠机械有限公司| 东莞市康旭机械有限公司| 河北永明地质工程机械有限公司 | 苏州恒迈精密机械有限公司| 宁波市北仑机械制造有限公司| 海之力机械有限公司| 天津瑞星传动机械有限公司| 河南正亚机械设备制造有限公司 | 瑞安市天晟包装机械有限公司| 上海圣起包装机械有限公司| 济南鑫金龙机械有限公司| 青岛德维机械制造有限公司| 成都蓉诚机械设备有限公司| 东莞三机械有限公司| 泰安重工机械有限公司| 伯曼机械制造有限公司| 长沙远洋机械制造有限公司| 上海戈扬包装机械有限公司 | 烟台市利达木工机械有限公司| 北京起重设备有限公司| 广州机械设备有限公司| 山东河山机械有限公司| 石家庄博锐食品机械有限公司| 杭州双金机械有限公司| 杭州凯邦机械有限公司| 漳州三宝钢铁有限公司| 南通宝顺机械有限公司| 昆明 机械 有限公司| 青岛特殊钢铁有限公司| 河南千里机械有限公司| 青岛新型建设机械有限公司| 青岛联瑞精密机械有限公司| 上海善能机械有限公司| 浙江超伟机械有限公司| 才美机械制造(上海)有限公司| 广州嘉银机械有限公司| 上海御流包装机械有限公司| 苏州鼎木机械设备有限公司| 起步有限公司上市排名| 苏州华尔普机械有限公司| 有限公司 印刷机械| 江阴 机械制造有限公司| 苏州在田机械有限公司| 威海柳道机械有限公司| 上海江南制药机械有限公司 | 阳煤化工机械有限公司| 武汉创联机械有限公司| 上海烨昌食品机械有限公司| 深圳市稻田包装机械有限公司| 起航中文小说有限公司| 北京盛美食品机械有限公司| 重庆宏工工程机械有限公司| 上海西马特机械制造有限公司| 苏州江源精密机械有限公司| 上海德珂斯机械自动化技术有限公司| 南通市通州区三槐机械制造有限公司| 常州杭钢卓信机械装备有限公司 | 江西蓝翔重工有限公司| 锦州万得包装机械有限公司| 南通太和机械有限公司| 柳州中源机械有限公司| 上海伍行机械设备有限公司| 腾达机械设备有限公司| 深圳市钢铁有限公司| 江苏纺织机械有限公司| 台州万州机械有限公司| 工机械制造有限公司| 山东精密机械有限公司| 温州华印机械有限公司| 昆山市烽禾升精密机械有限公司| 保定市恒瑞游乐机械有限公司| 如东通用机械有限公司| 启瑞机械广州有限公司| 徐州东亚钢铁有限公司| 重庆茂田机械有限公司| 杭州五金机械有限公司| 浙江网路崛起有限公司| 山东旭升机械有限公司| 苏州斗山工程机械有限公司| 杭州通产机械有限公司| 柳州中源机械有限公司| 上海中远海运重工有限公司| 广州山推机械有限公司| 长沙益广制药机械有限公司| 佛山精诚机械有限公司| 苏州日拓机械有限公司| 山东鲁工机械有限公司| 河南 机械制造有限公司| 东莞市利成机械有限公司| 万兹莱压缩机械(上海)有限公司| 泉州精镁机械有限公司| 济南卓恒膨化机械有限公司| 江阴市西城钢铁有限公司| 新疆机械设备有限公司| 中设(苏州)机械设备工程有限公司 | 陕西机械制造有限公司| 义乌机械设备有限公司| 联程机械宁波有限公司| 青岛同三塑料机械有限公司| 欧克机械制造有限公司| 浙江恒机械有限公司| 东阳机械设备制造有限公司 | 鑫盛机械制造有限公司| 济南迅捷机械设备有限公司| 杭州中力机械设备有限公司| 罗源闽光钢铁有限公司| 张家港机械设备有限公司| 滦南华瑞钢铁有限公司| 上海轩世机械有限公司| 安徽普源分离机械制造有限公司 | 青岛堡鑫机械有限公司| 广州市佳速精密机械有限公司| 江苏环保机械有限公司| 上海百勤机械有限公司| 上海嘉亿机械有限公司| 佛山市包装机械有限公司| 广州新浪爱拓化工机械有限公司| 机械设备有限公司经营范围| 河南宏基矿山机械有限公司| 上海慧丰传动机械有限公司| 华夏机械设备有限公司| 威海精密机械有限公司| 常州常林机械有限公司| 萨克米机械有限公司| 山东莱芜煤矿机械有限公司 | 张家口中煤嘉益机械制造有限公司| 临沂华立机械有限公司| 徐州东南钢铁工业有限公司| 东莞市数控机械有限公司| 上海三都机械有限公司| 瑞安市包装机械有限公司| 上海鑫越包装机械有限公司| 宁波博信机械制造有限公司| 宁波威恩精密机械有限公司| 山推重工机械有限公司| 苏州动力机械有限公司| 迅得机械东莞有限公司| 嘉兴敏实机械有限公司| 四川盛和机械设备有限公司| 晋工机械有限公司官网| 爱可机械深圳有限公司| 柳工常州机械有限公司| 江苏华雕机械有限公司| 太平洋机械有限公司| 东莞高臻机械设备有限公司| 青岛中华宇塑料机械有限公司| 申耀机械工业有限公司| 利勃海尔机械大连有限公司| 北京印刷机械有限公司| 福建泉成机械有限公司| 江门 机械 有限公司| 人科机械设备有限公司| 安徽工程机械有限公司| 江苏汉鼎机械有限公司| 苏州工业园区嘉宝精密机械有限公司 | 山西海威钢铁有限公司| 上海精密机械制造有限公司| 福海鑫钢铁有限公司| 济南圣元机械工程有限公司| 西得乐机械有限公司| 济南液压机械有限公司| 青岛武船重工有限公司| 深圳液压机械有限公司| 河北敬业钢铁有限公司地址| 无锡市阳通机械设备有限公司| 东莞麒麟机械有限公司| 扬州禹笑水利机械有限公司| 荃胜精密机械有限公司| 四平方向机械有限公司| 广东美特机械有限公司| 东莞市康旭机械有限公司| 东阳市机械有限公司| 阜新恒泰机械有限公司| 斗山工程机械有限公司| 山东造纸机械厂有限公司| 浙江鑫 机械有限公司| 成都弘林机械有限公司| 河南省邦恩机械制造有限公司| 绍兴金江机械有限公司| 东莞市通盛机械有限公司| 河南力博矿山机械有限公司| 宁波辉旺机械有限公司| 广州广重分离机械有限公司| 无锡通用机械有限公司| 浙江联科机械有限公司| 常州赛瑞克包装机械有限公司 | 广东巨风机械制造有限公司| 宁波昌源机械有限公司| 新乡振动机械有限公司| 徐州徐工随车起重机有限公司| 河南华北起重吊钩有限公司| 济南 机械设备有限公司| 洛阳鹏起实业有限公司| 上海曼亿包装机械有限公司| 深圳市包装机械有限公司| 青岛威尔塑料机械有限公司| 新兴移山天津重工有限公司| 艾珍机械设备制造有限公司| 力士德机械有限公司| 温州佳诚机械有限公司| 江阴新迪机械有限公司| 鹰起重机械有限公司| 济南帕特机械有限公司| 山东博宇机械有限公司| 华新机械有限公司官网| 上海爱德夏机械有限公司| 太仓越华精密机械配件有限公司 | 天工工程机械有限公司| 盐城市联鑫钢铁有限公司| 江苏船谷重工有限公司| 上海宝日机械制造有限公司| 上海法德机械设备有限公司| 深圳市 机械有限公司| 东莞机械设备有限公司| 江苏先电机械有限公司| 保定华光机械有限公司| 广州机械配件有限公司| 深圳市创世纪机械有限公司| 龙口隆基机械有限公司| 四平红嘴钢铁有限公司| 江苏八达重工机械有限公司| 上海申越包装机械制造有限公司 | 杭州化工机械有限公司| 东莞市天成机械有限公司| 青岛银象机械有限公司| 青岛隆硕农牧机械制造有限公司 | 唐山东方钢铁有限公司| 杭州 机械有限公司| 挤出机械 有限公司| 广州乾能机械制造有限公司 | 重庆明鑫机械有限公司| 江苏谷登工程机械装备有限公司| 山东通佳机械有限公司| 石家庄钢铁有限公司| 东莞市利瀚机械有限公司| 山西太行钢铁有限公司| 广东南桂起重机械有限公司 | 启益电器材机械有限公司招聘| 廊坊机械设备有限公司| 华隆 机械有限公司| 汉中群峰机械制造有限公司| 杭州三普机械有限公司| 许昌智工机械制造有限公司| 湖北银轮机械有限公司| 上海起帆电缆有限公司| 广州田田机械有限公司| 日发纺织机械有限公司| 山东日发纺织机械有限公司| 南京钢铁联合有限公司| 伊之密机械有限公司| 重庆华世丹机械制造有限公司| 常州迈腾机械有限公司| 新乐华宝塑料机械有限公司| 江苏竣业过程机械设备有限公司| 郑州山川重工有限公司| 上海海韬机械有限公司| 江阴机械制造有限公司| 泰州机械设备有限公司| 辽宁 机械制造有限公司| 青岛 塑料机械有限公司| 安徽起重机械有限公司| 福建省晋江市和盛机械有限公司| 上海宇意机械有限公司| 溧阳布勒机械有限公司| 临汾志强钢铁有限公司| 新华起重工具有限公司| 东光包装机械有限公司| 无锡烨隆精密机械有限公司| 浙江胜代机械有限公司| 精密机械加工有限公司| 靖江机械制造有限公司| 上海昶旭包装机械有限公司| 湖北天腾重型机械制造有限公司| 山东九环石油机械有限公司 | 东莞市 五金机械有限公司| 蚌埠行星机械有限公司| 常州市禾昌机械有限公司| 襄阳亚舟重型工程机械有限公司| 新乡正兴机械有限公司| 冷水江钢铁有限公司| 浙江长江机械有限公司| 上海江南制药机械有限公司| 昆成机械(昆山)有限公司| 河北卓昊机械制造有限公司| 昆山乙盛机械工业有限公司电话 | 江苏中圣机械制造有限公司| 广州文穗塑料机械有限公司| 三技精密机械有限公司| 杭州博创机械有限公司| 广东重工监理有限公司| 萍乡萍钢安源钢铁有限公司| 建筑工程有限公司起名| 三一起重机械有限公司| 沈阳世润重工有限公司| 北京加隆工程机械有限公司| 厦门 机械设备有限公司| 上海钊凯包装机械有限公司| 南京巴蜀机械有限公司| 山东冠华重工机械有限公司| 靖江机械制造有限公司| 玉环中本机械有限公司| 勤堡精密机械有限公司| 东风井关农业机械有限公司| 鹤壁市双信矿山机械有限公司| 佛山海之力机械有限公司| 上海豪德机械有限公司| 山东通佳机械有限公司| 江苏聚丰园林机械有限公司| 东方传动机械有限公司| 陕西机械制造有限公司| 曲阜市机械有限公司| 广州益川机械有限公司| 汉智数控机械有限公司| 无锡建筑机械有限公司| 河北明芳钢铁有限公司| 安阳亚新钢铁有限公司| 河北龙汐机械制造有限公司| 河南永康机械有限公司| 浙江华昌液压机械有限公司| 东莞市卓越机械有限公司招聘| 浙江兄弟包装机械有限公司 | 东阳市机械有限公司| 盘起工业大连有限公司| 桐乡合德机械有限公司| 昆成机械昆山有限公司| 华东油压机械制造有限公司| 广州市汇格机械设备有限公司| 山东长江机械有限公司| 山东豪迈机械制造有限公司| 武汉臻尚机械设备有限公司| 宁波迪恩机械有限公司| 迁安荣信钢铁有限公司| 宁波市鸿博机械制造有限公司| 东莞%机械制造有限公司| 福建三联机械有限公司| 杭州雅顿过滤机械有限公司| 泉州金鹰机械有限公司| 震德塑料机械有限公司| 上海鑫越包装机械有限公司| 章丘丰源机械有限公司| 温州市顺达服装机械有限公司 | 济宁四通工程机械有限公司| 广东思沃精密机械有限公司| 浙江君鸿机械有限公司| 常州达德机械有限公司| 佛山市洛德机械设备有限公司 | 北京龙泰机械设备安装有限公司 | 广东达诚机械有限公司| 郑州工程机械有限公司| 山东永峰钢铁有限公司| 广东恒联食品机械有限公司| 安阳市赛尔德精工机械有限公司| 扬州海沃机械有限公司| 武汉船舶重工有限公司| 扬州金威机械有限公司| 武义海拓机械有限公司| 人科机械设备有限公司| 烟台建筑机械有限公司| 苏州威锐机械有限公司| 莱州市龙骏化工机械有限公司| 山东长江机械有限公司| 昆山 精密机械有限公司| 力顺源机械有限公司| 石家庄 机械 有限公司| 宁波五峰机械有限公司| 常州小松工程机械有限公司招聘| 河北 机械 有限公司| 青岛一津机械有限公司| 航星洗涤机械(泰州)有限公司| 浙江起步儿童用品有限公司| 安徽柳工起重机有限公司| 济宁市兴旺机械制造有限公司| 集瑞联合重工有限公司| 长春泰盟机械制造有限公司| 鞍山机械重工有限公司| 青岛璞盛机械有限公司| 马鞍山机械有限公司| 山东瀚业机械有限公司| 保定市恒瑞游乐机械有限公司 | 江苏佳成机械有限公司| 河北澳森钢铁有限公司| 矿山机械制造有限公司| 上海牛力机械有限公司| 重庆精密机械有限公司| 旺磐精密机械有限公司| 广东南桂起重机械有限公司| 湖北机械制造有限公司| 唐山利军机械有限公司| 北京刷机械有限公司| 青岛锻压机械有限公司| 上海纳丰机械设备有限公司| 张家港机械设备有限公司| 江苏甲钢钢铁有限公司| 河北凯瑞重工有限公司| 蚌埠 机械有限公司| 东莞鸿铭机械有限公司| 江苏双箭输送机械有限公司| 东莞市自动化机械有限公司| 苏州市联佳精密机械有限公司| 张家港市饮料机械有限公司| 东莞信易电热机械有限公司| 宁波立强机械有限公司| 东莞胜通机械有限公司| 徐州挖掘机械有限公司| 人科机械设备有限公司| 湖北首开机械有限公司| 佛山市炬盈包装机械有限公司 | 温州杰福机械设备有限公司| 泉州力泉机械有限公司| 宁波安德机械有限公司| 石家庄博锐食品机械有限公司| 博凯机械上海有限公司| 杭州机械制造有限公司| 上海承企机械有限公司| 郑州茂祥机械有限公司| 苏州精创机械有限公司| 昆山市机械制造有限公司| 深圳中施机械设备有限公司| 海宁美惠机械有限公司| 洛阳泰红农业机械有限公司| 山东建凌机械有限公司| 马鞍山市机械有限公司| 济南食品机械有限公司| 浙江机械设备制造有限公司| 唐山宝泰钢铁有限公司| 杭州亿安机械设备有限公司| 山东省机械有限公司| 浙江康机械有限公司| 唐山鑫达钢铁有限公司| 太仓鸿安机械有限公司| 苏州立注机械有限公司| 慈溪市宏晟机械设备有限公司| 旭海机械设备有限公司| 汕头市机械有限公司| 商丘 机械设备有限公司| 上海巨远塑料机械有限公司| 上海起帆电缆有限公司| 杭州星宏机械有限公司| 曲靖呈钢铁有限公司| 苏州毕特富精密机械有限公司| 无锡市光彩机械制造有限公司| 德阳机械制造有限公司| 蓬莱大金海洋重工有限公司| 浙江新德宝机械有限公司| 杭州中亚机械有限公司| 龙口隆基机械有限公司| 扬州恒佳机械有限公司| 洛阳易高机械有限公司| 机械有限公司经营范围| 浙江东星纺织机械有限公司| 合肥中通抛光机械有限公司| 临汾志强钢铁有限公司| 长春泰盟机械制造有限公司| 旭英机械有限公司招聘| 定州市至信机械制造有限公司| 龙川航辉钢铁有限公司| 厦门 机械有限公司| 威海 机械有限公司| 广东佛山机械有限公司| 广州市包装机械有限公司| 上海又高机械有限公司| 全精密机械有限公司| 桂林恒达矿山机械有限公司| 宁波北仑机械有限公司| 德马科起重机械有限公司| 深圳市机械设备有限公司| 浙江欣炜机械有限公司| 南通佳宝机械有限公司| 佛山市恒力泰机械有限公司| 浙江志高机械有限公司| 青岛九合重工机械有限公司| 广东富华重工制造有限公司| 抚顺机械设备制造有限公司| 柳工常州机械有限公司| 镇江机械设备有限公司| 河南矿山起重有限公司| 河南机械设备制造有限公司| 江 诚机械有限公司| 长江液压机械有限公司| 建筑工程有限公司起名| 昆山市升达机械制造有限公司| 安徽联塔盛通机械制造有限公司 | 山东贝特起重机有限公司| 江苏贝斯特数控机械有限公司| 苏州鸿安机械有限公司| 湖南长河机械有限公司| 潍坊润鑫机械有限公司| 淄博机械制造有限公司| 广州市中铭印刷机械有限公司| 浙江铖虹机械有限公司| 郑州市鑫宇机械制造有限公司| 南京利晨机械有限公司| 郑州大华矿山机械有限公司| 上海星贝包装机械有限公司| 淄博联泰机械有限公司| 八达重工机械有限公司| 昆山合济机械有限公司| 山东天瑞重工有限公司| 东莞市得士威机械工业有限公司| 安徽同铸工程机械有限公司| 物资有限公司起名大全| 莱州市华弘机械有限公司| 北京航天振邦精密机械有限公司 | 苏州盈合机械有限公司| 徐州压力机械有限公司| 广西玉柴重工有限公司| 重型机械制造有限公司| 苏州毕特富精密机械有限公司| 济南锐捷机械设备有限公司| 宝德机械国际有限公司| 扬州恒润海洋重工有限公司| 上海盟申机械有限公司| 东莞市森人机械有限公司| 杭州岛文机械有限公司| 上海兴享机械工业有限公司| 成都包装机械有限公司| 上海祝融起重机械有限公司| 杭州莱顿机械有限公司| 青岛南牧机械设备有限公司| 丹阳荣嘉精密机械有限公司| 建设工程有限公司起名| 大连起重机有限公司| 上海轩世机械有限公司| 苏州金韦尔机械有限公司| 常州武进机械有限公司| 杭州红磊机械有限公司| 上海起鑫贸易有限公司| 济南食品机械有限公司| 无锡联通焊接机械有限公司| 徐州永欣重工有限公司| 上海板换机械设备有限公司| 昆山胜代机械有限公司招聘| 河南华北起重吊钩有限公司| 上海敏硕机械配件有限公司| 潍坊机械设备有限公司| 无锡好麦机械有限公司| 江苏坤泰机械有限公司| 郑州市机械有限公司| 邦贝液压机械有限公司| 临沂三友重工有限公司| 上海 起重设备有限公司| 海宁诚达机械有限公司| 上海尼尔机械制造有限公司| 福建起然燃气设备有限公司| 上海松精机械制造有限公司| 宁波瑞铭机械有限公司| 深圳电子机械有限公司| 江阴古川机械有限公司| 常德三一机械有限公司| 河北迪森机械制造有限公司| 苏州朗威电子机械有限公司| 诸城市机械有限公司| 河北输送机械有限公司| 昌邑市机械有限公司| 温州 机械有限公司| 扬州禹笑水利机械有限公司| 机械设计 有限公司| 上海烨昌食品机械有限公司 | 广州起重机械有限公司招聘| 西帕机械杭州有限公司| 动机械设备有限公司| 江苏东钢钢铁有限公司| 郑州维科重工机械有限公司| 嘉兴 精密机械有限公司| 安徽威萨重工机械有限公司| 山西美锦钢铁有限公司| 安丰钢铁有限公司电话| 上海善佳机械设备有限公司| 浙江汉克机械有限公司| 上海本优机械有限公司| 东莞科雄机械有限公司| 山东银鹰炊事机械有限公司| 宁波力劲机械有限公司| 建材有限公司起名大全| 温州华珍机械有限公司| 温州轻工机械有限公司| 上海沪临重工有限公司| 郑州液压机械有限公司| 江阴液压机械有限公司| 大连起重机有限公司| 济南闽源钢铁有限公司| 潍坊宝润机械有限公司| 廊坊包装机械有限公司| 新乡市中天机械有限公司| 人和弹簧机械有限公司| 泉州泉盛机械有限公司| 河南共威机械设备有限公司| 上海豪德机械有限公司| 诸城市志诺机械有限公司| 上海嘉倍德塑胶机械有限公司| 三益精密机械有限公司| 溧阳机械制造有限公司| 湖北铁正机械有限公司| 山东明宇重工机械有限公司| 青岛 数控机械有限公司| 上海轻工机械有限公司| 常州新燎原机械有限公司| 武汉纵能机械制造有限公司| 无锡英那威特机械发展有限公司 | 苏州纺织机械有限公司| 上海兴享机械工业有限公司| 河北洲际重工有限公司| 兴鑫钢铁有限公司电话| 南通奥普机械工程有限公司| 威海新元化工机械有限公司| 成都市机械有限公司| 兴龙机械模具有限公司| 石家庄博锐食品机械有限公司| 西门子机械传动 天津 有限公司 | 临海机械有限公司招聘| 嘉兴格鲁博机械有限公司| 济南岳峰机械有限公司| 常州东进机械有限公司| 上海佳成服装机械有限公司| 烟台万事达金属机械有限公司 | 青州三和机械有限公司| 宁波北仑机械有限公司| 深圳新添润彩印机械设备有限公司| 沈阳韩兆机械有限公司| 宁波康博机械有限公司| 西安华欧精密机械有限公司| 圣固 江苏 机械有限公司| 大连铸鸿机械有限公司| 诸城市富瑞德机械有限公司| 上海长空机械有限公司| 河南豫弘重型机械有限公司| 东莞市正一轴承机械有限公司| 杭州德智机械有限公司| 大连起重矿山机械有限公司| 天津国际机械阀门有限公司| 武汉市快诚机械有限公司| 江苏鑫林钢铁有限公司| 广州山推机械有限公司| 唐山鑫达钢铁有限公司| 宜兴市机械有限公司| 广东粤凯机械有限公司| 广州新成机械技术有限公司| 珠海市广浩捷精密机械有限公司| 菲美得机械有限公司| 浙江流遍机械润滑有限公司| 阿特拉斯机械设备有限公司| 工程的机械设备有限公司| 唐山津西钢铁有限公司| 深圳龙润彩印机械设备有限公司 | 厦门工业机械有限公司| 江苏恒悦机械有限公司| 青州市国发包装机械有限公司| 云南德胜钢铁有限公司| 广东日钢机械有限公司| 河北天冠环保机械有限公司| 济宁山矿机械有限公司| 临海正大机械有限公司| 合肥大洋机械制造有限公司| 青岛 木工机械有限公司| 安徽普源分离机械制造有限公司| 洛阳美卓重工机械有限公司 | 昆成机械昆山有限公司| 瑞利包装机械有限公司| 江阴惠尔信机械有限公司| 中山 机械有限公司| 大连液力机械有限公司| 卓郎智能机械有限公司| 海盐鼎盛机械有限公司| 东莞市台立数控机械有限公司| 南海区机械设备有限公司| 上海嘉亿机械有限公司| 山东起重机有限公司| 山东愚公工程机械有限公司 | 中核 天津 机械有限公司| 山东博杰重型工程机械有限公司| 皋兰兰鑫钢铁有限公司| 山东 重工有限公司| 扬州中建建设机械有限公司| 山西华强钢铁有限公司| 北京起重机械有限公司| 上海集美食品机械有限公司 | 莱州 机械有限公司| 无锡振华机械有限公司| 东莞市泽冠机械有限公司| 唐山国义特种钢铁有限公司| 哈尔滨联科包装机械有限公司 | 廊坊德基机械有限公司| 佛山市海之力机械有限公司| 银锐玻璃机械有限公司| 安徽鑫宏机械有限公司| 浙江永达输送机械设备有限公司| 台州亚格机械有限公司| 三菱重工上海有限公司| 诸城市华邦机械有限公司| 唐山印刷机械有限公司| 河南省中原起重机械有限公司| 东莞塑胶机械有限公司| 唐山新宝泰钢铁有限公司| 成都 机械有限公司| 苏州鹏丰机械元件有限公司| 安丘瑞源机械制造有限公司| 青岛机械利有限公司| 大连 起 有限公司| 山东包装机械有限公司| 长沙中传机械有限公司| 上海明硕机械有限公司| 德州市启泰机械设备有限公司| 土平机械江苏有限公司| 重型机械设备有限公司| 邹平 机械有限公司| 鞍钢朝阳钢铁有限公司| 青岛慧洋梳理机械有限公司| 三一众力机械有限公司| 宁波延晟机械有限公司| 常州胜代机械有限公司| 常州市丰丰机械有限公司| 比富机械(东莞)有限公司| 山东中悦钢铁有限公司| 河南龙昌机械有限公司| 东莞市益彩机械有限公司| 青岛雷沃工程机械有限公司| 南京一嘉起重机械制造有限公司| 品龙精工机械有限公司| 湘潭丰弘机械制造有限公司| 昆山苏隆机械制造有限公司| 福建巨霸机械有限公司| 鑫锐机械设备有限公司| 许昌市机械有限公司| 大连地拓重工有限公司怎么样| 中山冠力机械有限公司| 遂宁华能机械有限公司| 常州市瑞州机械有限公司| 苏州宁兴精密机械有限公司| 建筑机械设备有限公司| 广东包装机械有限公司| 佛山突破机械制造有限公司 | 南通贝思特机械工程有限公司| 麻阳金湘钢铁有限公司| 粤北联合钢铁有限公司| 鞍山源鑫钢铁有限公司| 江苏熔盛重工有限公司| 新乡市豫新起重机械有限公司| 河南兴远起重机有限公司| 安徽涌诚机械有限公司| 上海乾享机械设备有限公司| 深圳市海德精密机械有限公司| 豪德机械上海有限公司| 福建省 机械有限公司| 嘉泰数控机械有限公司| 南皮县中顺环保机械有限公司| 博硕机械制造有限公司| 电子有限公司起名大全| 合肥二宫机械有限公司| 苏州金韦尔机械有限公司| 旭英机械有限公司招聘| 山东港中钢铁有限公司| 苏州福润机械有限公司| 湖南 机械有限公司| 洛阳路通重工机械有限公司| 上海岭申机械有限公司| 杭州食品机械有限公司| 扬州中建建设机械有限公司| 上海起帆电线电缆有限公司| 广州华劲机械有限公司| 输送机械制造有限公司| 旭众食品机械有限公司| 湖南润通机械制造有限公司| 合肥精密机械有限公司| 苏州盈合机械有限公司| 温州中环机械设备有限公司| 马长江钢铁有限公司| 贝奇尔机械有限公司| 无锡市丰玮机械设备有限公司| 苏州金纬机械制造有限公司| 杭州金狮机械有限公司| 浙江雷克机械工业有限公司| 江苏宏光钢铁有限公司| 南通新兴机械制造有限公司| 新乡市机械有限公司| 河北太行机械工业有限公司| 青岛佳友包装机械有限公司 | 粮油机械设备有限公司| 深圳龙润彩印机械设备有限公司 | 东台市机械有限公司| 江苏宇达机械有限公司| 长沙宏银机械有限公司| 巩义市机械有限公司| 曲阜市机械有限公司| 宁波迪奥机械有限公司| 河北华西钢铁有限公司| 广东科杰机械自动化有限公司| 芜湖汇丰机械工业有限公司| 无锡博雅德精密机械有限公司| 招远市矿山机械有限公司| 佛山市明宏机械设备有限公司| 唐河大华机械有限公司| 苏州典艺精密机械有限公司| 武汉苏源机械设备租赁有限公司| 宁夏天地奔牛银起设备有限公司| 江苏巨能机械有限公司| 博兴县钢铁有限公司| 富阳液压机械有限公司| 常州数控机械有限公司| 邢台德龙钢铁有限公司| 泰州市海锋机械制造有限公司| 青岛圣诺机械有限公司| 济南庚辰钢铁有限公司| 苏州威锐机械有限公司| 唐山安丰钢铁有限公司| 峰峰合信钢铁有限公司| 河南合力起重机械有限公司| 机械设备有限公司经营范围| 郑州米格机械有限公司| 湖南申德钢铁有限公司| 深圳旭生机械有限公司| 诸城市盛和机械有限公司| 江苏闳业机械有限公司| 潍坊西泰机械有限公司| 上海昱庄机械有限公司|