Hello!

Guys, tell me, please, how to make changes to a specific registry branch? I read that you can use dll injection and winapi RegNotifyChangeKeyValue function. But due to lack of experience I can’t figure out how to do it :(

If anyone can, please help :)

Thanks in advance!

    1 answer 1

    Look here: RegistryMonitor - a .NET wrapper class for RegNotifyChangeKeyValue . Example of use:

     RegistryMonitor m = new RegistryMonitor(RegistryHive.CurrentUser, "..."); m.RegChanged += new EventHandler(OnRegChanged); m.Start(); // ... m.Stop();