string = RegQueryValue(key, subKey
)
The RegQueryValue method retrieves the value associated with
the unnamed value for a specified key in the registry.
Parameters
key : PyHKEY/int
An already open key, or any one of the following win32con
constants:
HKEY_CLASSES_ROOT
HKEY_CURRENT_USER
HKEY_LOCAL_MACHINE
HKEY_USERSsubKey : string
The name of the subkey with which the value is associated.
If this parameter is None or empty, the function retrieves the value set by the win32api::RegSetValue method
for the key identified by key.Comments
Values in the registry have name, type, and data components. This method
retrieves the data for a key's first value that has a NULL name.
But the underlying API call doesn't return the type, Lame Lame Lame, DONT USE THIS!!!
Win32 API References
Search for RegQueryValue at msdn, google or google groups.