Delete key registry windows

How to add, modify, or delete registry subkeys and values by using a .reg file

This article is intended for advanced users, administrators, and IT Professionals.

Importing Registration Entries (.reg) files is a feature of Regedit.exe and is not supported by Regedt32.exe. You can use Regedit.exe to make some changes to the registry on a Windows NT 4.0-based or Windows 2000-based computer, but some changes require Regedt32.exe. For example, you cannot add or change REG_EXPAND_SZ or REG_MULTI_SZ values with Regedit.exe on a Windows NT 4.0-based or Windows 2000-based computer. Regedt32.exe is the primary Registry Editor for Windows NT 4.0 and Windows 2000. If you must use Regedt32.exe, you cannot use Registration Entries (.reg) files to modify the registry. For more information about the differences between Regedit.exe and Regedt32.exe, click the following article number to view the article in the Microsoft Knowledge Base:

141377 Differences between Regedit.exe and Regedt32.exe

IN THIS TASK

Summary

Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article number to view the article in the Microsoft Knowledge Base:

322756 How to back up and restore the registry in Windows This step-by-step article describes how to add, modify, or delete registry subkeys and values by using a Registration Entries (.reg) file. Regedit.exe uses .reg files to import and export registry subkeys and values. You can use these .reg files to remotely distribute registry changes to several Windows-based computers. When you run a .reg file, the file contents merge into the local registry. Therefore, you must distribute .reg files with caution.

A .reg file has the following syntax:

RegistryEditorVersion
Blank line
[ RegistryPath1]

» DataItemName1«=» DataType1: DataValue1»
DataItemName2«=» DataType2: DataValue2»
Blank line
[ RegistryPath2]

» DataItemName3«=» DataType3: DataValue3«

RegistryEditorVersion is either «Windows Registry Editor Version 5.00» for Windows 2000, Windows XP, and Windows Server 2003, or «REGEDIT4» for Windows 98 and Windows NT 4.0. The «REGEDIT4» header also works on Windows 2000-based, Windows XP-based, and Windows Server 2003-based computers.

Blank line is a blank line. This identifies the start of a new registry path. Each key or subkey is a new registry path. If you have several keys in your .reg file, blank lines can help you to examine and to troubleshoot the contents.

Читайте также:  Драйвера для рейд контроллера для windows 10

RegistryPathx is the path of the subkey that holds the first value you are importing. Enclose the path in square brackets, and separate each level of the hierarchy by a backslash. For example:

[ HKEY_LOCAL_ MACHINE\SOFTWARE\Policies\Microsoft\Windows\System] A .reg file can contain several registry paths. If the bottom of the hierarchy in the path statement does not exist in the registry, a new subkey is created. The contents of the registry files are sent to the registry in the order you enter them. Therefore, if you want to create a new subkey with another subkey below it, you must enter the lines in the correct order.

DataItemNamex is the name of the data item that you want to import. If a data item in your file does not exist in the registry, the .reg file adds it (with the value of the data item). If a data item does exist, the value in your .reg file overwrites the existing value. Quotation marks enclose the name of the data item. An equal sign (=) immediately follows the name of the data item.

Как удалить ключ в реестре из командной строки

Описание

В некоторых ситуациях, бывает необходимо удалить какой-либо элемент из реестра, но сделать это надо не с помощью всем известной утилиты regedit, а через bat скрипт или с помощью командой строки. В данной статье пойдет речь как раз об этом.

Примеры

Для работы с реестром из командной строки предназначена утилита reg.exe, которая входит в состав большинства версий Windows.
Для получения подробных сведений о работе с утилитой reg.exe выполните в командной строке

Чтобы удалить параметр в реестре выполните следующую команду:

Эта команда удалит параметр Path, который находится в разделе HKCU\Software\WindowsFAQ\Test. Обратите внимание на то, что при выполнении этой команды выдается запрос на подтверждение удаления. При работе команды в пакетном файле его исполнение может быть прервано для подтверждения пользователем удаления параметра. Чтобы подтверждение не выводилось используйте /f. Этот ключ отключает вывод подтверждения.
При помощи reg.exe можно удалить сразу целый раздел, вместе со всеми параметрами и подразделами, находящимися в нем. Для этого используйте следующую команду:

Результатом работы этой команды станет удаление раздела WindowsFAQ вместе со всеми подразделами и параметрами. Обратите внимание на то, что, как и в первом случае, выполнение команды останавливается на запросе подтверждения удаления раздела. Чтобы отключить этот запрос добавьте к команде /f, т.е. команда будет выглядеть следующим образом:

Будьте внимательны с удалением параметров и разделов, по неосторожности можно удалить что-то нужное, особенно, когда отключено подтверждение удаления.

Delete Registry key from command line

Reg command allows us to delete registry keys and registry values from command line. This reg command can be used from batch files also. The syntax for the delete operation is explained below with examples.

Читайте также:  Свойства браузера edge windows 10

Delete a registry value

Delete the registry value ‘CleanShutdown‘ under the key ‘HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer

If you want to delete registry key without being prompted for confirmation then add /f switch to the command.

Example:
For the above example, the command to delete the registry value without any confirmation prompt:

If the registry key has space in its name, you can use double quotes as below.

Example:
Command to delete the registry value ‘TSAdvertise‘ under the registry key ‘HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server’

Delete a registry key

Delete all registry keys and values under a registry key:

Example:
Delete all the registry values under the key ‘HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit\Favorites’

Delete all registry values under a registry key

Be sure to use the option ‘/f’ after the key as mentioned in the post. using it in wrong place errors out saying ‘invalid option’

Correct usage is

You’re absolutely right. This is because “reg” needs a value from the set that has words such as “delete,” “add,” and “compare.”

As for “delete,” it (like “add”) needs a path (e.g. HKCU\SomeKey).

1) it works thanks

2) it does not work

(how to make it in remote pc , i know the password and user, if it is needed)

I think it implicitly tries to use the current logged in user credentials.
Try doing net use to the remote host before running reg delete.

How can I delete remote registry with space path?

Did you try enclosing it in quotes like below?

It’s working great base on your advice. Anyway, I still need to delete a registry key value with space, something example ‘Test This’ in
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

Thanks in advance.
Regards,

You can wrap the value name also in double quotes to make it work with space. For example the below command would work for the example case.

sorry, the value in space(key name with space), not key value

Hi. What about a key that has quotes in the key name? I can’t get it to work, I don’t know how it expects me to escape the quotes.
eg:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers\”DropboxExt1″]

ASUS laptop crashes on every boot. BSOD. tried f8, safe mode with command prompt; every option offered there starts and then returns to BSOD. MS repair says it “cannot make the necessary repairs”. Repair report says: “Registry is corrupt” Fix: “Registry rollback”. Laptop will not boot to CD/DVD drive, though I have used f12 to change boot config. The UBCD4WIN disk is useless there as well as all repair disks and Windows Repair disks. So I can’t fix corrupted registry with commands.
So…I pulled the SATA drive, attached USB 2.0 interface cable, and am now trying to repair the registry from another windows (10) laptop. I open a CMD window and have the ASUS drive, (drive F) ready for the proper command sequence; if there is one. Or perhaps you know of a program on some website, that I can download to my Windows 10 laptop, that will do it for me.
Option 2: re-format the drive and re-install it, and hope that the computer automatically re-installs Windows 7?
Option 3: Fork over the money for a new windows 10 laptop?

Читайте также:  Где лежат исходники ядра linux

Thanks in advance for your help,

As a follow up to the previous post; I found MSIEXEC and wonder if that command can be used to perform an automatic registry repair?

Thanks a lot for the fix and help. Will see if this error does not show again!

Reg Delete или Удаление записей в реестре через bat-файл

В статье, посвященной команде Reg Add, мы разобрали как можно добавить запись в реестр Windows через командную строку или посредством bat-файла. Существует обратная команда, позволяющая удалять ключи из реестра Windows, и называемая Reg Delete. Разберем синтаксис этой команды.

В общем виде команда Reg Delete выглядит так:

reg delete имя_раздела [/v имя_записи|/ve|/va] [/f]

Разберем синтаксис подробнее:

имя_раздела — указывается раздел, в котором находятся нужные ключи реестра. Фактически, путь к этим ключам. Если в пути встречаются пробелы между символами, его необходимо заключить в кавычки.

Например, на скриншоте ниже мы видим, что переменные реестра, относящиеся к программе 7-Zip лежат в ветке HKEY_LOCAL_MACHINE\SOFTWARE\7-Zip. Корневой раздел надо указывать в сокращенном виде: HKLM, HKCU, HKCR, HKU или HKCC.

/v имя_записи — имя удаляемого ключа реестра. Если не указать, будут удалены все подразделы и ключи.

/ve — удалять безымянные параметры.

/va — запрашивать все параметры данного раздела.

/f — удалять принудительно без дополнительного предупреждения.

Если операцию необходимо провести на удаленном компьютере, то перед именем раздела необходимо добавить имя компьютера вот в таком виде \\имя_компьютера\имя_раздела. Дальнейший синтаксис команды остается без изменений.

Пример использования команды Reg Delete:

Данная команда удалит параметр ABC в разделе HKEY_LOCAL_MACHINE\SOFTWARE\TEST на компьютере Test-PC. Если удаление происходит на локальном компьютере, то достаточно

Если нам нужно удалить весь раздел TEST целиком, то можно использовать команду

Как видим, команда Reg Delete не сложна в использовании. Тем не менее, нужно соблюдать осторожность, поскольку бездумное удаление ключей и разделов реестра способно оказать негативное влияние на операционную систему и софт в ней.

Как удалить ключ активации в Windows 10?

В прошлой статье мы написали об активации Windows 10 по телефону.

Но иногда бывает нужно отдать (продать) ваш ПК, но при этом не хотите ему отдавать активированную и установленную на нем операционную систему Windows.

Нужна учетная запись с правами администратора.

Деактивировать Windows можно, но только в учетной записи с правами администратора.

  1. Как удалить ключ?
  2. Как проверить удаление ключа?

  1. Откройте командную строку от имени администратора:
    1. Наводим курсор «Лупу»
    2. Вводим слово «cmd» на английском
    3. Жмём на «Правую кнопку» мыши
    4. Открыть от «Имени Администратора»

    После этих действий нужно перезагрузить ваш компьютер!

    Проверить полное удаление кода лицензии можно введя эту команду:

Оцените статью