注册表观察程序 C#

2024-03-19

我是 WMI 的新手,我需要实施注册表值更改事件 http://msdn.microsoft.com/en-us/library/aa393042(VS.85).aspx在 C# 服务中。

我需要一个事件处理程序,每次更改一组注册表值中的任何一个值时都会触发该事件处理程序。我想要类似的行为文件系统观察者 http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx班级的Changed http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.changed.aspx事件,但针对注册表值。

如果我可以使用其他一些技术来完成相同的任务,我也会很感激。我的最低要求是它是一个比我现在的解决方案更好的解决方案:每 20 秒轮询一次并将注册表值与最后的结果进行比较。

请在您的答案中提供示例代码。如果我能得到一个仅监视一个注册表值的示例,那就太好了。

我需要 .Net 2.0 中的解决方案

Thanks.


WMI 有时使用起来很有趣...我想我理解您的问题,因此请查看下面的代码片段,并告诉我这是否是您正在寻找的内容。

// --------------------------------------------------------------------------------------------------------------------- 
// <copyright file="Program.cs" company="">
//   
// </copyright>
// <summary>
//   Defines the WmiChangeEventTester type.
// </summary>
// ---------------------------------------------------------------------------------------------------------------------
namespace WmiExample
{
    using System;
    using System.Management;

    /// <summary>
    /// </summary>
    public class WmiChangeEventTester
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="WmiChangeEventTester"/> class.
        /// </summary>
        public WmiChangeEventTester()
        {
            try
            {
                // Your query goes below; "KeyPath" is the key in the registry that you
                // want to monitor for changes. Make sure you escape the \ character.
                WqlEventQuery query = new WqlEventQuery(
                     "SELECT * FROM RegistryValueChangeEvent WHERE " +
                     "Hive = 'HKEY_LOCAL_MACHINE'" +
                     @"AND KeyPath = 'SOFTWARE\\Microsoft\\.NETFramework' AND ValueName='InstallRoot'");

                ManagementEventWatcher watcher = new ManagementEventWatcher(query);
                Console.WriteLine("Waiting for an event...");

                // Set up the delegate that will handle the change event.
                watcher.EventArrived += new EventArrivedEventHandler(HandleEvent);

                // Start listening for events.
                watcher.Start();

                // Do something while waiting for events. In your application,
                // this would just be continuing business as usual.
                System.Threading.Thread.Sleep(100000000);

                // Stop listening for events.
                watcher.Stop();
            }
            catch (ManagementException managementException)
            {
                Console.WriteLine("An error occurred: " + managementException.Message);
            }
        }

        /// <summary>
        /// </summary>
        /// <param name="sender">
        /// The sender.
        /// </param>
        /// <param name="e">
        /// The e.
        /// </param>
        private void HandleEvent(object sender, EventArrivedEventArgs e)
        {
            Console.WriteLine("Received an event.");
            // RegistryKeyChangeEvent occurs here; do something.
        }

        /// <summary>
        /// </summary>
        public static void Main()
        {
            // Just calls the class above to check for events...
            WmiChangeEventTester receiveEvent = new WmiChangeEventTester();
        }
    }
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

注册表观察程序 C# 的相关文章

随机推荐