I am trying to execute this function, any idea what I'm doing wrong (I am getting HRESULT: 0x80042001):
public void RegistryWatcher()
{
WqlEventQuery evQuery = new WqlEventQuery();
evQuery.EventClassName = "RegistryEvent";
evQuery.WithinInterval = new TimeSpan(0, 0, 0, 15, 0);
evQuery.QueryString = @"Select * from RegistryKeyChangeEvent where
hive='HKEY_LOCAL_MACHINE' and KeyPath='SOFTWARE\\TRELLIAN'";
try
{
ManagementEventWatcher evListener = new ManagementEventWatcher();
evListener.Query = evQuery;
evListener.EventArrived += new EventArrivedEventHandler(OnRegistryChange);
ManagementScope mgrScope = new ManagementScope();
mgrScope.Path.Server = "localhost";
mgrScope.Path.NamespacePath = @"root\default";
evListener.Scope = mgrScope;
evListener.Start();
}
catch (ManagementException ex)
{
Console.WriteLine(ex.Message);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
private void OnRegistryChange(object sender, EventArrivedEventArgs e)
{
Console.WriteLine("Changed");
}
The following work in vbscript:
Set wmiServices = GetObject("winmgmts:root/default")
Set wmiSink = WScript.CreateObject( _
"WbemScripting.SWbemSink", "SINK_")
wmiServices.ExecNotificationQueryAsync wmiSink, _
"SELECT * FROM RegistryKeyChangeEvent " _
& "WHERE Hive='HKEY_LOCAL_MACHINE' AND " _
& "KeyPath='SOFTWARE\\TRELLIAN'"
WScript.Echo "Listening for Registry Key" _
& " Change Events..." & vbCrLf
While(True)
WScript.Sleep 1000
Wend
Sub SINK_OnObjectReady(wmiObject, wmiAsyncContext)
WScript.Echo "Received Registry Change Event" _
& vbCrLf & wmiObject.GetObjectText_()
End Sub
public void RegistryWatcher()
{
WqlEventQuery evQuery = new WqlEventQuery();
evQuery.EventClassName = "RegistryEvent";
evQuery.WithinInterval = new TimeSpan(0, 0, 0, 15, 0);
evQuery.QueryString = @"Select * from RegistryKeyChangeEvent where
hive='HKEY_LOCAL_MACHINE' and KeyPath='SOFTWARE\\TRELLIAN'";
try
{
ManagementEventWatcher evListener = new ManagementEventWatcher();
evListener.Query = evQuery;
evListener.EventArrived += new EventArrivedEventHandler(OnRegistryChange);
ManagementScope mgrScope = new ManagementScope();
mgrScope.Path.Server = "localhost";
mgrScope.Path.NamespacePath = @"root\default";
evListener.Scope = mgrScope;
evListener.Start();
}
catch (ManagementException ex)
{
Console.WriteLine(ex.Message);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
private void OnRegistryChange(object sender, EventArrivedEventArgs e)
{
Console.WriteLine("Changed");
}
The following work in vbscript:
Set wmiServices = GetObject("winmgmts:root/default")
Set wmiSink = WScript.CreateObject( _
"WbemScripting.SWbemSink", "SINK_")
wmiServices.ExecNotificationQueryAsync wmiSink, _
"SELECT * FROM RegistryKeyChangeEvent " _
& "WHERE Hive='HKEY_LOCAL_MACHINE' AND " _
& "KeyPath='SOFTWARE\\TRELLIAN'"
WScript.Echo "Listening for Registry Key" _
& " Change Events..." & vbCrLf
While(True)
WScript.Sleep 1000
Wend
Sub SINK_OnObjectReady(wmiObject, wmiAsyncContext)
WScript.Echo "Received Registry Change Event" _
& vbCrLf & wmiObject.GetObjectText_()
End Sub