what is the keys and values of windows registry?

Discussion in 'General Chat' started by micky-o, Jun 29, 2009.

Thread Status:
Not open for further replies.
  1. #1
    any idea is great.
     
    micky-o, Jun 29, 2009 IP
  2. Kerosene

    Kerosene Alpha & Omega™ Staff

    Messages:
    11,366
    Likes Received:
    575
    Best Answers:
    4
    Trophy Points:
    385
  3. walleroberter

    walleroberter Banned

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    The registry contains two basic elements: keys and values.

    Registry Keys are similar to folders - in addition to values, each key can contain subkeys, which may contain further subkeys, and so on. Keys are referenced with a syntax similar to Windows' path names, using backslashes to indicate levels of hierarchy. E.g. HKEY_LOCAL_MACHINE\Software\Microsoft\Windows refers to the subkey "Windows" of the subkey "Microsoft" of the subkey "Software" of the HKEY_LOCAL_MACHINE key.

    Registry Values are name/data pairs stored within keys. Values are referenced separately from keys. Value names can contain backslashes but doing so makes them difficult to distinguish from their key paths. The Windows API functions that query and manipulate registry values take value names separately from the key path and/or handle that identifies the parent key.

    The terminology is somewhat misleading, as the values are similar to an associative array, where standard terminology would refer to the name part of the value as a "key". The terms are a holdout from the 16-bit registry in Windows 3, in which keys could not contain arbitrary name/data pairs, but rather contained only one unnamed value (which had to be a string). In this sense, the entire registry was like an associative array where the keys (in both the registry sense and dictionary sense) formed a hierarchy, and the values were all strings. When the 32-bit registry was created, so was the additional capability of creating multiple named values per key, and the meanings of the names were somewhat distorted.

    There are a number of different types of values.

    Welcome to learn knowledge on registry
    users7.nofeehost.com/walle321
     
    walleroberter, Jun 30, 2009 IP
  4. paul100

    paul100 Peon

    Messages:
    85
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Well, Mr.Walleroberter you really made me to understand A to Z about Windows Registry within just few minutes. That's really great. I thought the registry would be something confusing, and you shattered all that myths. Thank you very much. And I expect many more tutorials from you.
     
    paul100, Jun 30, 2009 IP
  5. Kerosene

    Kerosene Alpha & Omega™ Staff

    Messages:
    11,366
    Likes Received:
    575
    Best Answers:
    4
    Trophy Points:
    385
    #5
    I hate to be a wet blanket, but Mr.Walleroberter's post was a simple copy and paste from the Wikipedia links that I posted.

    Not that there's anything wrong with that.
     
    Kerosene, Jun 30, 2009 IP
Thread Status:
Not open for further replies.