Click here to Skip to main content
Licence CPOL
First Posted 7 Jul 2003
Views 164,998
Bookmarked 95 times

RegistryMonitor - a .NET wrapper class for RegNotifyChangeKeyValue

By | 16 Jan 2006 | Article
The Windows API provides a function RegNotifyChangeKeyValue, which is not covered by the Microsoft.Win32.RegistryKey class. This solution imports that function and encapsulates it in a convenient manner.

Sample Image - RegistryMonitor.png

Introduction

The Windows API provides a function RegNotifyChangeKeyValue, which notifies the caller about changes to attributes or the content of a specified registry key. Unfortunately, this function is not provided by the Microsoft.Win32.RegistryKey class. Because I needed that functionality, I've written a simple wrapper class.

Usage

Instantiation

RegistryMonitor has three constructors, the parameter lists should be self-explanatory:

RegistryMonitor(RegistryKey registryKey)
RegistryMonitor(string name)
RegistryMonitor(RegistryHive registryHive, string subKey)

Events

RegistryMonitor supports two events:

public event EventHandler RegChanged;
public event ErrorEventHandler Error;

The RegChanged event is raised when the registry key specified during construction has changed. Error is raised when an exception occurs.

The latter event is necessary because the monitoring is hosted in a different thread.

Properties

RegistryMonitor has only one property:

public RegChangeNotifyFilter RegChangeNotifyFilter { get; set; }

RegChangeNotifyFilter is an enum. Since I don't want to repeat its implementation here in the article, I just want to say that it controls which kinds of registry changes will be detected, e.g. only key or value changes.

Methods

RegistryMonitor has two public methods which are declared as follows:

public void Start();
public void Stop();

I don't think that these methods require much explanation. The former creates a separate thread, which will monitor the registry, and the latter will stop that thread.

Example

Because a simple example will say more than a thousand words, here's a console sample monitoring HKCU\Environment (that's where the current user's environment variables are stored):

public class MonitorSample
{
    static void Main() 
    {
        RegistryMonitor monitor = new 
          RegistryMonitor(RegistryHive.CurrentUser, "Environment");
        monitor.RegChanged += new EventHandler(OnRegChanged);
        monitor.Start();
 
        while(true);
        
        monitor.Stop();
    }
         
    private void OnRegChanged(object sender, EventArgs e)
    {
        Console.WriteLine("registry key has changed");
    }
}

Provided with this article is another demo, which is a WinForms application (however, a VS.NET 2003 solution).

Points of interest

The first version of RegistryMonitor used reflection to retrieve the private hkey field of the Microsoft.Win32.RegistryKey class. However, Microsoft changed the internal implementation, so this hack didn't work anymore (see the comments below). Therefore I changed my implementation, so that RegistryMonitor now uses P/Invoke to open and close the registry key explicitly.

History

  • 08-Jul-2003 - Initial release.
  • 15-Jan-2005 - Updated to work for both .NET 1.1 and 2.0.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Thomas Freudenberg

Architect
Pharmatechnik GmbH & Co. KG
Germany Germany

Member

Follow on Twitter Follow on Twitter


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questiontnx PinmemberRohit Dubey from Hyderabad5:56 15 Mar '12  
QuestionGet the process causing the registry key change? PinmemberJon77777778:13 18 May '10  
AnswerRe: Get the process causing the registry key change? PinmemberJon77777779:25 18 May '10  
AnswerRe: Get the process causing the registry key change? PinassociateThomas Freudenberg21:33 18 May '10  
QuestionWindows 7??? Pinmemberpsmartt117:23 5 Apr '10  
AnswerRe: Windows 7??? Pinmemberpsmartt119:51 5 Apr '10  
QuestionNot Catching RegistryMonitor Events In Windows Service PinmemberSeeSharpCutsMe9:08 23 Sep '09  
AnswerRe: Not Catching RegistryMonitor Events In Windows Service PinmemberMartyn Bone0:31 12 Nov '09  
GeneralVery-Very Excellent Pinmembereg_Anubhava23:49 5 Aug '09  
GeneralRe: Very-Very Excellent PinmemberThomas Freudenberg1:06 6 Aug '09  
QuestionWin32Exception: The system cannot find the file specified PinmemberMember 31677486:35 14 May '09  
QuestionRe: Win32Exception: The system cannot find the file specified PinmemberThomas Freudenberg7:34 16 May '09  
GeneralThanks so much for this! PinmemberTeufel121213:02 16 Mar '09  
QuestionHOW TO: get changed key and value PinmemberJared James Sullivan20:17 13 Feb '09  
QuestionHow can I get the changed value and the type? Pinmemberpuyopuy19:51 3 Aug '08  
AnswerRe: How can I get the changed value and the type? PinmemberThomas Freudenberg20:28 3 Aug '08  
GeneralRe: How can I get the changed value and the type? Pinmemberpuyopuy1:57 7 Aug '08  
GeneralRe: How can I get the changed value and the type? PinmemberThomas Freudenberg2:52 7 Aug '08  
GeneralRe: How can I get the changed value and the type? Pinmemberpuyopuy15:03 7 Aug '08  
GeneralRe: How can I get the changed value and the type? Pinmembernipsonanomimata7:55 5 Sep '08  
AnswerRe: How can I get the changed value and the type? PinmemberThomas Freudenberg8:22 5 Sep '08  
GeneralOnRegChanged - Object Ref not set to instance PinmemberBergeir7:24 1 Jul '08  
Hi,
 
I'm having problems using the class in a Windows Service. On changing the monitored registry I get the error:
"Object reference not set to an instance of an object.."
The handled 'crash' is in the protected virtual void OnRegChanged() function in the RegistryMonitor class, when setting the handler constructor (Ln99)
 
The change is clearly caught, but I don't seem to get the signal, any thoughts?
 
The implementation is simple:
 
string keyName = string.Format("{0}\\{1}", Registry.LocalMachine.Name, registryPath);
monitor = new RegistryMonitor(keyName);
monitor.RegChanged += new EventHandler(OnRegChanged);
monitor.Error += new System.IO.ErrorEventHandler(OnError);
monitor.Start();
...
private void OnRegChanged(object sender, EventArgs e)...
QuestionMissing files? Pinmembertatowaki8:54 12 Feb '08  
AnswerRe: Missing files? PinmemberThomas Freudenberg9:54 12 Feb '08  
Generalthread issues [modified] PinmemberTheShaver0:10 20 Aug '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 16 Jan 2006
Article Copyright 2003 by Thomas Freudenberg
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid