Essential Skills for playing registry D

Source: Internet
Author: User

Source: hacker base www.hackbase.com

I believe many of my friends have played the Registry. But how many people do I want to write the Registry File manually? I have read the contents and formats of many registry files on my computer. After N experiments, I have the ability to write them myself. I am a side dish. I don't know if there is any other format. I can only write it according to the original table file format on my machine. I hope you can understand it. We write the Registry File mainly because sometimes the registry cannot be opened, but we must modify the registry, so we need to learn to write the Registry file by ourselves. Say nothing! Started!
Open notepad and write the following letters on the top:
REGEDIT4 (4 is added after the Registry name. It should be capitalized. I don't know if XP is in another format, because my computer is an NT System). When it is finished, press enter 2.
Now we start to write the path of the primary key to be edited:
It is still the top level, but it must be enclosed in square brackets. The upper-level primary and lower-level subkeys must be separated by a "" slash, and case sensitive. For example:
[HKEY_CURRENT_USERABCDABcdabcd)
Now let's write the key and key value. There are multiple types of key values:
String Value: REG_SZ
Binary value: REG_BINARY
DWORD Value: REG_DWORD
Multiple string values: REG_MULTI_SZ
It can include a string value of REG_EXPAND_SZ.
The format is: "Value Name" = Data Type: "value" (Note: The Value Name and value data are enclosed by the "and connected by an equal sign in the middle) note that when we write the DWORD Value REG_DWORD (dubyte value), we should not use the "" number for the key value after =, however, the quotation marks must be used to enclose all the other items. For example, if we write a string named your lover in the path just now, the value is cool:
"Your Lover" = REG_SZ: "Cool chicken"
Another example is to write a double byte named ABCD with a value of 00000001:
"ABCD" = REG_dword: 000000001 (this is a double byte value, so do not use quotation marks)
(Note: The "REG _" before the data type does not need to be written. For example, the above Code has the same effect as this Code: "ABCD" = dword: 000000001 ).

Haola ~~ I may not be very clear about my ability to express myself, but the experts will understand it at a Glance. If I have a dish that is not very clear, I will often look at the main path of the Registry, you must be familiar with the paths in the Registry to write the Registry file ~~~~
Note that when we write the DWORD Value REG_DWORD (dubyte value), we should not use the "" number for the key value after =, however, the quotation marks must be used to enclose all the other items. For example, if we write a string named your lover in the path just now, the value is cool:
"Your Lover" = REG_SZ: "Cool chicken"
Another example is to write a double byte named ABCD with a value of 00000001:
"ABCD" = REG_dword: 000000001 (this is a double byte value, so do not use quotation marks)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.