This week's book giveaway is in the Java in General forum. We're giving away four copies of Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework and have Michael Redlich on-line! See this thread for details.
Is there a way to read, edit and delete keys and values in windows registry using C..? I googled. But couldn't find a way to do it using C.
Are there libraries libraries available for that..?
Please help..
Using command reg windows registry can be changed.
There is a function called system in C which can be used to execute commands in command prompt. Using that I can execute reg command and change registry.
I couldn't find an easier way than that.
I think that way is easier than using native libraries..
Windows has functions in the Windows API for using the registry: Registry Reference
Ofcourse you will need the Windows SDK to be able to use those API functions. Note that the documentation for each of the functions has information about in which library the function exists and which header files from the Windows SDK you need to include.