registry changing monitor

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way for .net to get the name of the changing entry of registry
in real time? We want to monitor the whole registry and be notified when
there was a entry is changed on time. We also want to know the name and path
of the changed entry.
how can i do this?

we appreciate ur help...
 
AFAIK there is no standard way to do this.

"Not standard" means that you can inject unmanaged dll that will replace
default registry api.
This unmanaged dll will communicate with managed side with the help of any
IPC ( window messages, sockets, named pipes, etc )
 
| Is there any way for .net to get the name of the changing entry of
registry
| in real time? We want to monitor the whole registry and be notified when
| there was a entry is changed on time. We also want to know the name and
path
| of the changed entry.
| how can i do this?
|
| we appreciate ur help...

You can use System.Management and WMI to register a Registry Event listener,
but you should be prepared to get quite some events per second on a busy
system, so this should only be used for debugging purposes.

Willy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top