Read, Set or Delete registry keys and values, save and restore from a .REG file.
Syntax: REG QUERY [ROOT\]RegKey /V ValueName [/s] [/f Data [/K] [/D] [/C] [/E]] [/T DataType] [/Z] [/SE Separator] [/reg:32 | /reg:64] REG QUERY [ROOT\]RegKey /VE [/f Data [/K] [/D] [/C] [/E]] -- /VE returns the (default) value [/T DataType] [/Z] [/SE Separator] [/reg:32 | /reg:64] REG ADD [ROOT\]RegKey /V ValueName [/t DataType] [/S Separator] [/d Data] [/f] [/reg:32] [/reg:64] REG ADD [ROOT\]RegKey /VE [/d Data] [/f] [/reg:32 | /reg:64] REG DELETE [ROOT\]RegKey /V ValueName [/f] REG DELETE [ROOT\]RegKey /VE [/f] -- Remove the (default) value REG DELETE [ROOT\]RegKey /VA [/f] -- Delete all values under this key REG COPY [\\SourceMachine\][ROOT\]RegKey [\\DestMachine\][ROOT\]RegKey REG EXPORT [ROOT\]RegKey FileName.reg [/Y] [/reg:32 | /reg:64] REG IMPORT FileName.reg [/reg:32 | /reg:64] REG SAVE [ROOT\]RegKey FileName.hiv [/Y] [/reg:32 | /reg:64] REG RESTORE \\MachineName\[ROOT]\KeyName FileName.hiv [/reg:32 | /reg:64] REG LOAD KeyName FileName [/reg:32 | /reg:64] REG UNLOAD KeyName REG COMPARE [ROOT\]RegKey [ROOT\]RegKey [/V ValueName] [Output] [/s] [/reg:32 | /reg:64] REG COMPARE [ROOT\]RegKey [ROOT\]RegKey [/VE] [Output] [/s] [/reg:32 | /reg:64] Key: ROOT : HKLM = HKey_Local_machine (default) HKCU = HKey_current_user HKU = HKey_users HKCR = HKey_classes_root ValueName : The value, under the selected RegKey, to edit. (default is all keys and values) /C : Case sensitive search. /D Data : The actual data to store as a "String", integer etc /E : Return only exact matches, by refault all are returned. /F : Add/Delete - Force an update without prompting "Value exists, overwrite Y/N" Query - Specify the data/pattern to search for, default = "*" Use double quotes if the string contains spaces. /K : Search in Key names only. \\Machine : Name of remote machine - omitting defaults to current machine. Only HKLM and HKU are available on remote machines. FileName : The filename to save or restore a registry hive. KeyName : A key name to load a hive file into. (Creating a new key) RegKey : A Registry key. String name. These are case sensitive when creating and case-insensitive when reading. /S : Query all subkeys and values. /S Separator : Character to use as the separator in REG_MULTI_SZ values, the default is "\0" /SE Separator : Character to use as the separator in REG_MULTI_SZ values, the default is "\0" /T DataType : REG_SZ (default) | REG_DWORD | REG_EXPAND_SZ | REG_MULTI_SZ Click for full list, default = all types. /reg:32 : Force REG.exe to read/write to the 32-bit registry location. /reg:64 : Force REG.exe to read/write to the 64-bit registry location. By default a 32-bit process (such as an SCCM client or a 32 bit MSI installer) on a 64 bit machine, will use a 32-bit view of the registry: HKLM\SOFTWARE\Wow6432Node Use the /REG switch to over-ride this. See Q305097 for more details. Output : /od (only differences) /os (only matches) /oa (all) /on (no output) /V : Query for a specific registry key value, if omitted all values for the key are queried. /VE : Compare or SET the empty value name (default) /Y : Force overwriting the existing file without prompt. /Z : Verbose - shows the numeric equivalent for the type of the valuename.
Any of the above commands can be run against a remote machine by adding \\MachineName to the command line, assuming the Remote Registry Service is running.
Registry paths which contain a space must be enclosed by quotation marks:
"HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList\"
It is easy to miss one space in a long path so it
is not a bad practice to simply surround all registry paths with quotes.
Depending on the registry permissions, REG ADD may require running REG.exe from an elevated command prompt.
Registry data stored under HKCU will be visible and writable by the currently logged in user.
Registry data stored under HKLM will be visible to all users and writable only by administrators.
REG RESTORE has a tendency not to work, possibly due to firewall issues, EXPORT and IMPORT are much more reliable.
The REG command will interpret \ as an escape for the character that immediately follows it.
To include a quote mark (") in the data, prefix it with the escape character e.g. Here is \" a quoteThis can cause problems with quoted directory paths because \" at the end of the line will be escaped.
To save a directory path with a trailing backslash (\) requires adding a second backslash to 'escape' the escape
so for example instead of "C:\My Docs\" use "C:\My Docs\\"
To activate registry changes in HKEY_CURRENT_USER without logging off:
RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters ,1 ,True
n.b. this is an unsupported hack, with a good chance of failing in the future - details on oldnewthing
The SetWallpaper.exe utility is an alternative.
Unlike REGEDIT, REG.exe does not always require elevation
When adding an item to HKCU, REG will be automatically manifested “asInvoker”, and will work without elevation,
when adding an item to HKLM then it does need to be run elevated.
0 = Success, the result is identical
1 = Failed
2 = Success, the result is different
Examples
Querying the console settings:
REG QUERY HKCU\Console\ REG QUERY HKCU\Console /v ScreenBufferSize
Add the registry key 'Sample' along with some data and then query to check that it worked:
REG ADD HKCU\Software\SS64 /v Sample /d "some test data"
REG QUERY HKCU\Software\SS64 /v Sample
Add the registry key to disable Fast User Switching on the current PC (requires elevation):
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v HideFastUserSwitching /t REG_DWORD /d 1
Add a REG_BINARY registry key to HKLM and overwrite if it already exists (requires elevation)
REG ADD HKLM\Software\DiLithium /v WarpSpeed /t REG_BINARY /d f1f2f3f4 /f
REG QUERY HKLM\Software\DiLithium /v WarpSpeed
Find the location of the Start Menu folder:
REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Start Menu"
List IE Proxy overrides:
REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride
List all the Internet Explorer Trusted sites.
Save a directory/registry path that ends with a backslash:
Set _reg=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SS64.EXE\
Set _prog=C:\Program Files\SS64 App\
REG ADD "%_reg%\" /f /v "SS64.EXE" /t REG_SZ /d "%_prog%\"
Save a REG_Expand_SZ value of %systemroot% , this variable will be expanded every time the registry value is read, rather than once whan the key is added:
REG ADD HKLM\Software\SS64 /v Path /t REG_EXPAND_SZ /d ^%systemroot^%
Copy Keys:
REG COPY HKCU\Software\SS64 HKCU\Software\SS64Copy
REG COPY \\Computer64\HKCU\Software\SS64 HKCU\Software\SS64
Export/Import/Save/Restore:
REG EXPORT HKCU\Software\SS64 C:\MyReg.REG
REG IMPORT C:\MyReg.REG
REG SAVE HKCU\Software\SS64 C:\MyRegHive.hiv
REG RESTORE \\Wks580\HKCU\Software\SS64 C:\MyRegHive.hiv
Run a script at first logon (Run Once) to do this we edit the Default User profile by temporarily loading it as TEMP:
REG LOAD HKU\TEMP "C:\Documents and Settings\Default User\NTUSER.DAT" REG ADD HKU\TEMP\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v newUserProfile /t REG_EXPAND_SZ /d "D:\setup.cmd" /f REG UNLOAD HKU\TEMP
To save a progress log as part of a RunOnce command you can include redirection to a log file as part of the command string, however to make this work the redirection characters and quotes must be escaped:
... "setup.cmd ^>^> \"C:\Temp\setup.log\"\"" /f
More examples are available via: REG QUERY /? REG ADD /? etc
"The way to a mans heart is through his stomach" ~ Fanny Fern (writer)
Related:
SETX - Set environment variables permanently, can also read a registry key and write the value to a text file.
REGEDIT - Load Registry settings from a .REG file.
Powershell: Get-ItemProperty / Set-ItemProperty - Retrieve / save registry Keys.
Q305097 - View the system registry using a 64-bit version of Windows.
Q325347 - Run a Logon Script once when a new user logs on, Windows 2003.