I'm trying to collect a list of available value_names to query with QueryValueEx
as in this post: Python code to read registry
The value_name string options I've seen are DisplayName (which works), Description, InstallRoot, DeviceID, DeviceGUID (all of which do not work for me). I tested each by simply substituting the value_name option in the following line:
val = QueryValEx(asubkey, value_name)
Does anyone know how to get a list of the available options that works with the above code?
On an additional note, what I am trying to retrieve is the appropriate string for dispatching Autodesk Design Review via win32com.client
. I believe, but don't know, that I can find this string by querying the registry value.