Teach you the Notepad command method Quickly delete the specified registry key value

  
Today, we want to introduce to you how to quickly delete the registry key value while knowing the key value path. In fact, very simple, just add two simple symbols to achieve the deletion of key values ​​and sub-key values.
For key and subkey values, simply add the “-” number before the path. For example,
assuming we want to delete the entire Vista123 key value in the following key values,
[HKEY_CURRENT_USER\\Software\\Vista123]
 quo;Vista123”=dword:00000001
So just copy the following Go to Notepad and save as a .reg file and double-click to import.
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USER\\Software\\Vista123] quo;Vista123”=dword:00000001
Assume that we only need to delete the subkey value of Vista123 in the above key values, just copy the following Content to Notepad and save as a .reg file and double-click to import.
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\\Software\\Vista123]
 Vista123”=-
Whether for Vista or Windows 7, the registry is optimized and cracked The most common method. There are usually two ways to modify the registry. One is to run regedit to open the registry editor to find the corresponding key value and then modify it. The second is to save the file as a .reg file by writing the modified key value in the notebook. But whenever we encounter a key to delete, we often only use the first method.

Copyright © Windows knowledge All Rights Reserved