ParsaAi
ParsaAi

Reputation: 349

How to list all registry keys and their subkeys names using Win API (C++)?

I'm aware of the functions like RegOpenKey, RegGetValue and etc. But I can't figure out how to get all keys and their subkeys names. How can I do such thing?

Upvotes: 0

Views: 701

Answers (1)

You are looking for RegEnumKeyEx and to get the values, RegEnumValue.

Upvotes: 3

Related Questions